pythonPackages.PyMVGLive: init at 1.1.4
This commit is contained in:
19
pkgs/development/python-modules/pymvglive/default.nix
Normal file
19
pkgs/development/python-modules/pymvglive/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ lib, stdenv, 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user