python3Packages.pythonegardia: init at 1.0.40
This commit is contained in:
parent
089908b9db
commit
7875699b7e
30
pkgs/development/python-modules/pythonegardia/default.nix
Normal file
30
pkgs/development/python-modules/pythonegardia/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pythonegardia";
|
||||||
|
version = "1.0.40";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1rv6m5zaflf3nanpl1xmfmfcpg8kzcnmniq1hhgrybsspkc7mvry";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests, only two test file for manual interaction
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pythonegardia" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python interface with Egardia/Woonveilig alarms";
|
||||||
|
homepage = "https://github.com/jeroenterheerdt/python-egardia";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -6732,6 +6732,8 @@ in {
|
|||||||
|
|
||||||
pythonefl = callPackage ../development/python-modules/python-efl { };
|
pythonefl = callPackage ../development/python-modules/python-efl { };
|
||||||
|
|
||||||
|
pythonegardia = callPackage ../development/python-modules/pythonegardia { };
|
||||||
|
|
||||||
python-engineio = callPackage ../development/python-modules/python-engineio { };
|
python-engineio = callPackage ../development/python-modules/python-engineio { };
|
||||||
|
|
||||||
python-engineio_3 = callPackage ../development/python-modules/python-engineio/3.nix { };
|
python-engineio_3 = callPackage ../development/python-modules/python-engineio/3.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user