Merge pull request #109650 from fabaff/bump-do

This commit is contained in:
Sandro 2021-01-17 23:43:27 +01:00 committed by GitHub
commit cd55ae957b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, isPy3k
@ -8,18 +9,17 @@
, pytestCheckHook
, requests
, responses
, lib, stdenv
}:
buildPythonPackage rec {
pname = "python-digitalocean";
version = "1.15.0";
version = "1.16.0";
src = fetchFromGitHub {
owner = "koalalorenzo";
repo = "python-digitalocean";
repo = pname;
rev = "v${version}";
sha256 = "1pz15mh72i992p63grwzqn2bbp6sm37zcp4f0fy1z7rsargwsbcz";
sha256 = "16fxlfpisj4rcj9dvlifs6bpx42a0sn9b07bnyzwrbhi6nfvkd2g";
};
propagatedBuildInputs = [
@ -33,7 +33,7 @@ buildPythonPackage rec {
pytest
pytestCheckHook
responses
] ++ stdenv.lib.optionals (!isPy3k) [
] ++ lib.optionals (!isPy3k) [
mock
];
@ -41,13 +41,12 @@ buildPythonPackage rec {
cd digitalocean
'';
pythonImportsCheck = [ "digitalocean" ];
meta = with lib; {
description = "digitalocean.com API to manage Droplets and Images";
homepage = "https://pypi.python.org/pypi/python-digitalocean";
license = licenses.lgpl3;
maintainers = with maintainers; [
kiwi
teh
];
description = "Python API to manage Digital Ocean Droplets and Images";
homepage = "https://github.com/koalalorenzo/python-digitalocean";
license = with licenses; [ lgpl3Only ];
maintainers = with maintainers; [ kiwi teh ];
};
}