dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / python-modules / vultr / default.nix
blob4e10e0144243eaed3bc4645d70c81868aa771810
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   requests,
6 }:
8 buildPythonPackage rec {
9   version = "1.0.1";
10   format = "setuptools";
11   pname = "vultr";
13   src = fetchFromGitHub {
14     owner = "spry-group";
15     repo = "python-vultr";
16     rev = "v${version}";
17     sha256 = "00lc5hdhchvm0472p03019bp9541d8y2773xkjy8vblq9qhys8q7";
18   };
20   propagatedBuildInputs = [ requests ];
22   # Tests disabled. They fail because they try to access the network
23   doCheck = false;
25   pythonImportsCheck = [ "vultr" ];
27   meta = with lib; {
28     description = "Vultr.com API Client";
29     homepage = "https://github.com/spry-group/python-vultr";
30     license = licenses.mit;
31     maintainers = with maintainers; [ lihop ];
32   };