python3Packages.linode-api: 4.1.8b1 -> 5.0.0

This commit is contained in:
Fabian Affolter 2021-02-18 12:38:39 +01:00
parent 2489d95c1c
commit 8903bbf6a8

View file

@ -1,41 +1,38 @@
{ { lib
buildPythonPackage, , buildPythonPackage
fetchFromGitHub, , fetchFromGitHub
pythonOlder, , pythonOlder
lib, , requests
requests, , pytestCheckHook
future, , mock
enum34, }:
mock }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "linode-api"; pname = "linode-api";
version = "4.1.8b1"; # NOTE: this is a beta, and the API may change in future versions. version = "5.0.0";
disabled = pythonOlder "3.6";
disabled = (pythonOlder "2.7");
propagatedBuildInputs = [ requests future ]
++ lib.optionals (pythonOlder "3.4") [ enum34 ];
postPatch = (lib.optionalString (!pythonOlder "3.4") ''
sed -i -e '/"enum34",/d' setup.py
'');
doCheck = true;
checkInputs = [ mock ];
# Sources from Pypi exclude test fixtures # Sources from Pypi exclude test fixtures
src = fetchFromGitHub { src = fetchFromGitHub {
rev = "v${version}";
owner = "linode"; owner = "linode";
repo = "python-linode-api"; repo = "python-linode-api";
sha256 = "0qfqn92fr876dncwbkf2vhm90hnf7lwpg80hzwyzyzwz1hcngvjg"; rev = version;
sha256 = "0lqi15vks4fxbki1l7n1bfzygjy3w17d9wchjxvp22ijmas44yai";
}; };
meta = { propagatedBuildInputs = [ requests ];
checkInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "linode_api4" ];
meta = with lib; {
description = "Python library for the Linode API v4";
homepage = "https://github.com/linode/python-linode-api"; homepage = "https://github.com/linode/python-linode-api";
description = "The official python library for the Linode API v4 in python."; license = licenses.bsd3;
license = lib.licenses.bsd3; maintainers = with maintainers; [ glenns ];
maintainers = with lib.maintainers; [ glenns ];
}; };
} }