forked from mirrors/nixpkgs
python3Packages.upnpy: init at 1.1.8
This commit is contained in:
parent
495066a47f
commit
6245356237
27
pkgs/development/python-modules/upnpy/default.nix
Normal file
27
pkgs/development/python-modules/upnpy/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "upnpy";
|
||||||
|
version = "1.1.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "5kyc0d3r";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "17rqcmmwsl0m4722b1cr74f80kqwq7cgxsy7lq9c88zf6srcgjsf";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Project has not published tests yet
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "upnpy" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "UPnP client library for Python";
|
||||||
|
homepage = "https://github.com/5kyc0d3r/upnpy";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7867,6 +7867,8 @@ in {
|
||||||
|
|
||||||
update-dotdee = callPackage ../development/python-modules/update-dotdee { };
|
update-dotdee = callPackage ../development/python-modules/update-dotdee { };
|
||||||
|
|
||||||
|
upnpy = callPackage ../development/python-modules/upnpy { };
|
||||||
|
|
||||||
uproot3 = callPackage ../development/python-modules/uproot3 { };
|
uproot3 = callPackage ../development/python-modules/uproot3 { };
|
||||||
|
|
||||||
uproot3-methods = callPackage ../development/python-modules/uproot3-methods { };
|
uproot3-methods = callPackage ../development/python-modules/uproot3-methods { };
|
||||||
|
|
Loading…
Reference in a new issue