mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.PyMVGLive: init at 1.1.4
This commit is contained in:
parent
95928538a5
commit
c7d735a27b
2 changed files with 21 additions and 0 deletions
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;
|
||||
};
|
||||
}
|
|
@ -18255,6 +18255,8 @@ EOF
|
|||
python-docx = callPackage ../development/python-modules/python-docx { };
|
||||
|
||||
aiohue = callPackage ../development/python-modules/aiohue { };
|
||||
|
||||
PyMVGLive = callPackage ../development/python-modules/pymvglive { };
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue