ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ambiclimate / default.nix
blobe375d347f2aae8ed123c2004a09549dce42b4cde
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , async-timeout
6 }:
8 buildPythonPackage rec {
9   pname = "ambiclimate";
10   version = "0.2.1";
12   src = fetchPypi {
13     pname = "Ambiclimate";
14     inherit version;
15     sha256 = "0vhmpazc2n7qyyh7wqsz635w0f8afk2i5d592ikb84bgnfn83483";
16   };
18   propagatedBuildInputs = [
19     aiohttp
20     async-timeout
21   ];
23   # tests are not present
24   doCheck = false;
26   pythonImportsCheck = [ "ambiclimate" ];
28   meta = with lib; {
29     description = "Python library to communicate with ambiclimate";
30     homepage = "https://github.com/Danielhiversen/pyAmbiclimate";
31     license = with licenses; [ mit ];
32     maintainers = with maintainers; [ fab ];
33   };