Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ambiclimate / default.nix
blobecaae3fd9f57170c1bed1eaebc7580dfd7893bf5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , async-timeout
6 }:
8 buildPythonPackage rec {
9   pname = "ambiclimate";
10   version = "0.2.1";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "Ambiclimate";
15     inherit version;
16     sha256 = "0vhmpazc2n7qyyh7wqsz635w0f8afk2i5d592ikb84bgnfn83483";
17   };
19   propagatedBuildInputs = [
20     aiohttp
21     async-timeout
22   ];
24   # tests are not present
25   doCheck = false;
27   pythonImportsCheck = [ "ambiclimate" ];
29   meta = with lib; {
30     description = "Python library to communicate with ambiclimate";
31     homepage = "https://github.com/Danielhiversen/pyAmbiclimate";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };