python3Packages.python-ipware: 0.9.0 -> 2.0.0

This commit is contained in:
Leona Maroni 2023-11-29 21:06:37 +01:00
parent e44b3f0c85
commit 0835f4bc1f
No known key found for this signature in database
GPG Key ID: D5B08ADFC75E3605

View File

@ -3,11 +3,12 @@
, fetchFromGitHub
, pythonOlder
, unittestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "python-ipware";
version = "0.9.0";
format = "setuptools";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -15,12 +16,17 @@ buildPythonPackage rec {
owner = "un33k";
repo = "python-ipware";
rev = "v${version}";
hash = "sha256-RK624ktIzoLBD/2mB65zcYZ+o8axDE16bJpB6TwG4h4=";
hash = "sha256-j43uAcb1dyKe/SHQLLR+QJS6hKGB5qxjb9NiJaUPj8Y=";
};
pythonImportsCheck = [
"ipware"
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [
"python_ipware"
];
nativeCheckInputs = [
unittestCheckHook
];