python3Packages.vultr: 0.1.2 -> 1.0.1

This commit is contained in:
Fabian Affolter 2021-06-06 17:19:42 +02:00 committed by Martin Weinelt
parent fc0b15b696
commit a4ba417d44

View file

@ -5,26 +5,29 @@
}:
buildPythonPackage rec {
version = "0.1.2";
version = "1.0.1";
pname = "vultr";
src = fetchFromGitHub {
owner = "spry-group";
repo = "python-vultr";
rev = version;
sha256 = "1qjvvr2v9gfnwskdl0ayazpcmiyw9zlgnijnhgq9mcri5gq9jw5h";
owner = "spry-group";
repo = "python-vultr";
rev = "v${version}";
sha256 = "00lc5hdhchvm0472p03019bp9541d8y2773xkjy8vblq9qhys8q7";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
];
# Tests disabled. They fail because they try to access the network
doCheck = false;
pythonImportsCheck = [ "vultr" ];
meta = with lib; {
description = "Vultr.com API Client";
homepage = "https://github.com/spry-group/python-vultr";
license = licenses.mit;
maintainers = with maintainers; [ lihop ];
};
}