linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pythonegardia / default.nix
blob4c2394421fb0ae7113600e8c6570de74ce39bc2f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "pythonegardia";
9   version = "1.0.40";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1rv6m5zaflf3nanpl1xmfmfcpg8kzcnmniq1hhgrybsspkc7mvry";
14   };
16   propagatedBuildInputs = [
17     requests
18   ];
20   # Project has no tests, only two test file for manual interaction
21   doCheck = false;
22   pythonImportsCheck = [ "pythonegardia" ];
24   meta = with lib; {
25     description = "Python interface with Egardia/Woonveilig alarms";
26     homepage = "https://github.com/jeroenterheerdt/python-egardia";
27     license = with licenses; [ mit ];
28     maintainers = with maintainers; [ fab ];
29   };