python3Packages.digital-ocean: update meta and add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2021-01-17 18:08:35 +01:00
parent 3d24a90c3a
commit 533baea7ab

View file

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