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:
parent
b1ec189c9f
commit
8653b7ab87
@ -1,23 +1,53 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, requests, jsonpickle }:
|
{ buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, jsonpickle
|
||||||
|
, mock
|
||||||
|
, pytest
|
||||||
|
, pytestCheckHook
|
||||||
|
, requests
|
||||||
|
, responses
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-digitalocean";
|
pname = "python-digitalocean";
|
||||||
version = "1.13.2";
|
version = "1.15.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "koalalorenzo";
|
||||||
sha256 = "0h4drpdsmk0b3rlvg6q6cz11k23w0swj1iddk7xdcw4m7r7c52kw";
|
repo = "python-digitalocean";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1pz15mh72i992p63grwzqn2bbp6sm37zcp4f0fy1z7rsargwsbcz";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests jsonpickle ];
|
propagatedBuildInputs = [
|
||||||
|
jsonpickle
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
# Package doesn't distribute tests.
|
dontUseSetuptoolsCheck = true;
|
||||||
doCheck = false;
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
pytestCheckHook
|
||||||
|
responses
|
||||||
|
] ++ stdenv.lib.optionals (!isPy3k) [
|
||||||
|
mock
|
||||||
|
];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
cd digitalocean
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "digitalocean.com API to manage Droplets and Images";
|
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;
|
license = licenses.lgpl3;
|
||||||
maintainers = with maintainers; [ teh ];
|
maintainers = with maintainers; [
|
||||||
|
kiwi
|
||||||
|
teh
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user