13 buildPythonPackage rec {
14 pname = "python-digitalocean";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
21 owner = "koalalorenzo";
22 repo = "python-digitalocean";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-CIYW6vl+IOO94VyfgTjJ3T13uGtz4BdKyVmE44maoLA=";
27 build-system = [ setuptools ];
43 # Test tries to access the network
44 disabledTests = [ "TestFirewall" ];
46 pythonImportsCheck = [ "digitalocean" ];
49 description = "Python API to manage Digital Ocean Droplets and Images";
50 homepage = "https://github.com/koalalorenzo/python-digitalocean";
51 changelog = "https://github.com/koalalorenzo/python-digitalocean/releases/tag/v${version}";
52 license = with licenses; [ lgpl3Only ];
53 maintainers = with maintainers; [ teh ];