Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / tahoma-api / default.nix
blobedd3469416680e1a10a748920622e616861d8c76
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "tahoma-api";
9   version = "0.0.17";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "philklei";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-YwOKSBlN4lNyS+hfdbQDUq1gc14FBof463ofxtUVLC4=";
17   };
19   propagatedBuildInputs = [ requests ];
21   # Project has no tests
22   doCheck = false;
23   pythonImportsCheck = [ "tahoma_api" ];
25   meta = with lib; {
26     description = "Python module to interface with Tahoma REST API";
27     homepage = "https://github.com/philklei/tahoma-api/";
28     license = with licenses; [ asl20 ];
29     maintainers = with maintainers; [ fab ];
30   };