13 buildPythonPackage rec {
14 pname = "python-digitalocean";
17 src = fetchFromGitHub {
18 owner = "koalalorenzo";
21 sha256 = "1c50ka4y712rr551gq3kdfw7fgfxr4w837sww6yy683yz7m1d1h8";
24 propagatedBuildInputs = [
29 dontUseSetuptoolsCheck = true;
35 ] ++ lib.optionals (!isPy3k) [
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 license = with licenses; [ lgpl3Only ];
52 maintainers = with maintainers; [ kiwi teh ];