python3Packages.doorbirdpy: init at 2.1.0

This commit is contained in:
Robert Schütz
2021-06-17 17:15:30 +02:00
parent c147520d3f
commit 704c1e5708
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "doorbirdpy";
version = "2.1.0";
src = fetchPypi {
pname = "DoorBirdPy";
inherit version;
sha256 = "ed0e94953cdf96111c7f73c5fcf358f65dc0ff5e47f63fc057bf18ca7512e606";
};
propagatedBuildInputs = [
requests
];
# no tests on PyPI, no tags on GitLab
doCheck = false;
pythonImportsCheck = [ "doorbirdpy" ];
meta = with lib; {
description = "Python wrapper for the DoorBird LAN API";
homepage = "https://gitlab.com/klikini/doorbirdpy";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}