python3Packages.geniushub-client: init at 0.6.30

This commit is contained in:
Robert Schütz 2022-02-19 03:10:36 +00:00
parent de43d26955
commit cfb3aa2680
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
}:
buildPythonPackage rec {
pname = "geniushub-client";
version = "0.6.30";
src = fetchPypi {
inherit pname version;
sha256 = "390932b6e5051e221d104b2683d9deb6e352172c4ec4eeede0954bf2f9680211";
};
propagatedBuildInputs = [
aiohttp
];
# tests only implemented after 0.6.30
doCheck = false;
pythonImportsCheck = [ "geniushubclient" ];
meta = with lib; {
description = "Aiohttp-based client for Genius Hub systems";
homepage = "https://github.com/zxdavb/geniushub-client";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -3194,6 +3194,8 @@ in {
generic = callPackage ../development/python-modules/generic { };
geniushub-client = callPackage ../development/python-modules/geniushub-client { };
genome-collector = callPackage ../development/python-modules/genome-collector { };
genpy = callPackage ../development/python-modules/genpy { };