ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / tahoma-api / default.nix
blob4402182231174f5fa91d2752f12b80d539abd028
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "tahoma-api";
9   version = "0.0.17";
11   src = fetchFromGitHub {
12     owner = "philklei";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-YwOKSBlN4lNyS+hfdbQDUq1gc14FBof463ofxtUVLC4=";
16   };
18   propagatedBuildInputs = [ requests ];
20   # Project has no tests
21   doCheck = false;
22   pythonImportsCheck = [ "tahoma_api" ];
24   meta = with lib; {
25     description = "Python module to interface with Tahoma REST API";
26     homepage = "https://github.com/philklei/tahoma-api/";
27     license = with licenses; [ asl20 ];
28     maintainers = with maintainers; [ fab ];
29   };