python3Packages.pywilight: init at 0.0.65

This commit is contained in:
Fabian Affolter 2021-01-04 23:03:13 +01:00
parent 06c9dbcece
commit 09cd64465b
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, ifaddr
, requests
}:
buildPythonPackage rec {
pname = "pywilight";
version = "0.0.65";
src = fetchPypi {
inherit pname version;
sha256 = "1bldhg81lal9mbf55ky3gj2ndlplr0vfjp1bamd0mz5d9icas8nf";
};
propagatedBuildInputs = [
ifaddr
requests
];
# no tests are present
doCheck = false;
pythonImportsCheck = [ "pywilight" ];
meta = with lib; {
description = "Python API for WiLight device";
homepage = "https://github.com/leofig-rj/pywilight";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6263,6 +6263,8 @@ in {
pywick = callPackage ../development/python-modules/pywick { };
pywilight = callPackage ../development/python-modules/pywilight { };
pywinrm = callPackage ../development/python-modules/pywinrm { };
pyxattr = let