ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / wavinsentio / default.nix
blob21dbe7b8ae829225569e1ec057b2691b6b73de7f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "wavinsentio";
10   version = "0.3.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.8";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "sha256-3mzK+YBRhLDqcEJDyMK43Le6eCH3B89unXpuu8nIe1g=";
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   };