Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / vultr / default.nix
blob975e4098112ab21dc371e3b3b9464e4eb67bebee
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 }:
7 buildPythonPackage rec {
8   version = "0.1.2";
9   pname = "vultr";
11   src = fetchFromGitHub {
12       owner = "spry-group";
13       repo = "python-vultr";
14       rev = version;
15       sha256 = "1qjvvr2v9gfnwskdl0ayazpcmiyw9zlgnijnhgq9mcri5gq9jw5h";
16   };
18   propagatedBuildInputs = [ requests ];
20   # Tests disabled. They fail because they try to access the network
21   doCheck = false;
23   meta = with lib; {
24     description = "Vultr.com API Client";
25     homepage = "https://github.com/spry-group/python-vultr";
26     license = licenses.mit;
27     maintainers = with maintainers; [ lihop ];
28   };