Merge pull request #119131 from fabaff/pythonegardia
This commit is contained in:
commit
b4c333baa4
3 changed files with 33 additions and 1 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -209,7 +209,7 @@
|
|||
"edl21" = ps: with ps; [ ]; # missing inputs: pysml
|
||||
"ee_brightbox" = ps: with ps; [ ]; # missing inputs: eebrightbox
|
||||
"efergy" = ps: with ps; [ ];
|
||||
"egardia" = ps: with ps; [ ]; # missing inputs: pythonegardia
|
||||
"egardia" = ps: with ps; [ pythonegardia ];
|
||||
"eight_sleep" = ps: with ps; [ pyeight ];
|
||||
"elgato" = ps: with ps; [ ]; # missing inputs: elgato
|
||||
"eliqonline" = ps: with ps; [ ]; # missing inputs: eliqonline
|
||||
|
|
|
@ -6748,6 +6748,8 @@ in {
|
|||
|
||||
pythonefl = callPackage ../development/python-modules/python-efl { };
|
||||
|
||||
pythonegardia = callPackage ../development/python-modules/pythonegardia { };
|
||||
|
||||
python-engineio = callPackage ../development/python-modules/python-engineio { };
|
||||
|
||||
python-engineio_3 = callPackage ../development/python-modules/python-engineio/3.nix { };
|
||||
|
|
Loading…
Reference in a new issue