Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / vultr / default.nix
blobf2150153be3a166671d869453e823339d971a852
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 }:
7 buildPythonPackage rec {
8   version = "1.0.1";
9   format = "setuptools";
10   pname = "vultr";
12   src = fetchFromGitHub {
13     owner = "spry-group";
14     repo = "python-vultr";
15     rev = "v${version}";
16     sha256 = "00lc5hdhchvm0472p03019bp9541d8y2773xkjy8vblq9qhys8q7";
17   };
19   propagatedBuildInputs = [
20     requests
21   ];
23   # Tests disabled. They fail because they try to access the network
24   doCheck = false;
26   pythonImportsCheck = [ "vultr" ];
28   meta = with lib; {
29     description = "Vultr.com API Client";
30     homepage = "https://github.com/spry-group/python-vultr";
31     license = licenses.mit;
32     maintainers = with maintainers; [ lihop ];
33   };