ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyintesishome / default.nix
blob3eb0b22b52fe9194a5a0b7e7d29a157a27d4e004
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 }:
7 buildPythonPackage rec {
8   pname = "pyintesishome";
9   version = "1.8.4";
11   src = fetchFromGitHub {
12     owner = "jnimmo";
13     repo = "pyIntesisHome";
14     rev = "refs/tags/${version}";
15     sha256 = "sha256-+pXGB7mQszbBp4KhOYzDKoGFoUHATWLbOU6QwMIpGWU=";
16   };
18   propagatedBuildInputs = [
19     aiohttp
20   ];
22   # Project has no tests
23   doCheck = false;
24   pythonImportsCheck = [ "pyintesishome" ];
26   meta = with lib; {
27     description = "Python interface for IntesisHome devices";
28     homepage = "https://github.com/jnimmo/pyIntesisHome";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };