python3Packages.niluclient: init at 0.1.2

This commit is contained in:
Fabian Affolter
2021-09-25 15:13:12 +02:00
parent f725095581
commit 048af0cd5f
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "niluclient";
version = "0.1.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "11ymn0cr4lchrcnf2xxlgljw223gwln01gxwr7mcgf95yc4006iq";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "niluclient" ];
meta = with lib; {
description = "Python client for getting air pollution data from NILU sensor stations";
homepage = "https://github.com/hfurubotten/niluclient";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -4923,6 +4923,8 @@ in {
nilearn = callPackage ../development/python-modules/nilearn { };
niluclient = callPackage ../development/python-modules/niluclient { };
nimfa = callPackage ../development/python-modules/nimfa { };
nine = callPackage ../development/python-modules/nine { };