pythonPackages.digital-ocean: 1.13.2 -> 1.15.0

updated to newest version (1.13.2 was released ~2.25 years ago). switched to fetchFromGitHub to enable tests. added kiwi to maintainers. formatted with nixpkgs-fmt
This commit is contained in:
Robert Djubek 2020-02-27 22:52:14 +00:00
parent b1ec189c9f
commit 8653b7ab87
No known key found for this signature in database
GPG key ID: 156C88A5B0A04B2A

View file

@ -1,23 +1,53 @@
{ stdenv, buildPythonPackage, fetchPypi, requests, jsonpickle }:
{ buildPythonPackage
, fetchFromGitHub
, fetchPypi
, isPy3k
, jsonpickle
, mock
, pytest
, pytestCheckHook
, requests
, responses
, stdenv
}:
buildPythonPackage rec {
pname = "python-digitalocean";
version = "1.13.2";
version = "1.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "0h4drpdsmk0b3rlvg6q6cz11k23w0swj1iddk7xdcw4m7r7c52kw";
src = fetchFromGitHub {
owner = "koalalorenzo";
repo = "python-digitalocean";
rev = "v${version}";
sha256 = "1pz15mh72i992p63grwzqn2bbp6sm37zcp4f0fy1z7rsargwsbcz";
};
propagatedBuildInputs = [ requests jsonpickle ];
propagatedBuildInputs = [
jsonpickle
requests
];
# Package doesn't distribute tests.
doCheck = false;
dontUseSetuptoolsCheck = true;
checkInputs = [
pytest
pytestCheckHook
responses
] ++ stdenv.lib.optionals (!isPy3k) [
mock
];
preCheck = ''
cd digitalocean
'';
meta = with stdenv.lib; {
description = "digitalocean.com API to manage Droplets and Images";
homepage = https://pypi.python.org/pypi/python-digitalocean;
homepage = "https://pypi.python.org/pypi/python-digitalocean";
license = licenses.lgpl3;
maintainers = with maintainers; [ teh ];
maintainers = with maintainers; [
kiwi
teh
];
};
}