python3Packages.pyprosegur: init at 0.0.5

This commit is contained in:
Fabian Affolter 2021-08-05 22:55:22 +02:00
parent 6dc0549183
commit 37eaf713b9
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ lib
, aiohttp
, backoff
, buildPythonPackage
, click
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyprosegur";
version = "0.0.5";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dgomes";
repo = pname;
rev = version;
sha256 = "0bpzxm8s548fw6j36brp7bcx9481x2hrypcw3yyg4ihsjhka5qln";
};
propagatedBuildInputs = [
aiohttp
backoff
click
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyprosegur" ];
meta = with lib; {
description = "Python module to communicate with Prosegur Residential Alarms";
homepage = "https://github.com/dgomes/pyprosegur";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6449,6 +6449,8 @@ in {
pyproj = callPackage ../development/python-modules/pyproj { };
pyprosegur = callPackage ../development/python-modules/pyprosegur { };
pyptlib = callPackage ../development/python-modules/pyptlib { };
pypubsub = callPackage ../development/python-modules/pypubsub { };