ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / evohome-async / default.nix
blob908d68dd27e922d0408e3eb0c7375775ef080f3d
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "evohome-async";
10   version = "0.3.15";
11   disabled = pythonOlder "3.7";
13   src = fetchFromGitHub {
14     owner = "zxdavb";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-/dZRlcTcea26FEpw/XDItKh4ncr/eEFQcdfIE2KIMo8=";
18   };
20   propagatedBuildInputs = [
21     aiohttp
22   ];
24   # Project has no tests
25   doCheck = false;
26   pythonImportsCheck = [ "evohomeasync2" ];
28   meta = with lib; {
29     description = "Python client for connecting to Honeywell's TCC RESTful API";
30     homepage = "https://github.com/zxdavb/evohome-async";
31     license = with licenses; [ asl20 ];
32     maintainers = with maintainers; [ fab ];
33   };