My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pymvglive/default.nix

19 lines
451 B

{ lib, buildPythonPackage, fetchPypi, requests }:
buildPythonPackage rec {
pname = "PyMVGLive";
version = "1.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "0sh4xm74im9qxzpbrlc5h1vnpgvpybnpvdcav1iws0b561zdr08c";
};
propagatedBuildInputs = [ requests ];
meta = with lib; {
description = "get live-data from mvg-live.de";
homepage = "https://github.com/pc-coholic/PyMVGLive";
license = licenses.free;
};
}