Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wavinsentio / default.nix
blob22ed0d177a3602de8b29f2e17bd16c697eb69536
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "wavinsentio";
10   version = "0.4.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.8";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-Oko3Ivj95vajNWjQTQK18i5B/DIBngjw2HLlzYqLv2Y=";
18   };
20   propagatedBuildInputs = [
21     requests
22   ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [
28     "wavinsentio"
29   ];
31   meta = with lib; {
32     description = "Python module to interact with the Wavin Sentio underfloor heating system";
33     homepage = "https://github.com/djerik/wavinsentio";
34     license = with licenses; [ mit ];
35     maintainers = with maintainers; [ fab ];
36   };