mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
8653b7ab87
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
54 lines
939 B
Nix
54 lines
939 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchPypi
|
|
, isPy3k
|
|
, jsonpickle
|
|
, mock
|
|
, pytest
|
|
, pytestCheckHook
|
|
, requests
|
|
, responses
|
|
, stdenv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-digitalocean";
|
|
version = "1.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "koalalorenzo";
|
|
repo = "python-digitalocean";
|
|
rev = "v${version}";
|
|
sha256 = "1pz15mh72i992p63grwzqn2bbp6sm37zcp4f0fy1z7rsargwsbcz";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
jsonpickle
|
|
requests
|
|
];
|
|
|
|
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";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [
|
|
kiwi
|
|
teh
|
|
];
|
|
};
|
|
}
|