python3Packages.python-ipware: init at 0.9.0

This commit is contained in:
Moritz 'e1mo' Fromm
2023-06-07 11:30:46 +02:00
parent ac3ad2b757
commit 4c9f1d74f3
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "python-ipware";
version = "0.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "un33k";
repo = "python-ipware";
rev = "v${version}";
hash = "sha256-RK624ktIzoLBD/2mB65zcYZ+o8axDE16bJpB6TwG4h4=";
};
pythonImportsCheck = [
"ipware"
];
nativeCheckInputs = [
unittestCheckHook
];
meta = with lib; {
description = "A python package for server applications to retrieve client's IP address";
homepage = "https://github.com/un33k/python-ipware";
changelog = "https://github.com/un33k/python-ipware/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ e1mo ];
};
}
+2
View File
@@ -7756,6 +7756,8 @@ self: super: with self; {
python-ipmi = callPackage ../development/python-modules/python-ipmi { };
python-ipware = callPackage ../development/python-modules/python-ipware { };
python-ironicclient = callPackage ../development/python-modules/python-ironicclient { };
python-izone = callPackage ../development/python-modules/python-izone { };