Merge pull request #64628 from mmahut/anonip
pythonPackages.anonip: init at 1.0.0
This commit is contained in:
commit
95647d8aee
24
pkgs/development/python-modules/anonip/default.nix
Normal file
24
pkgs/development/python-modules/anonip/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, ipaddress, isPy27 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "anonip";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "DigitaleGesellschaft";
|
||||||
|
repo = "Anonip";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0y5xqivcinp6pwx4whc8ca1n2wxrvff7a2lpbz2dhivilfanmljs";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = lib.optionals isPy27 [ ipaddress ];
|
||||||
|
|
||||||
|
checkPhase = "python tests.py";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/DigitaleGesellschaft/Anonip";
|
||||||
|
description = "A tool to anonymize IP-addresses in log-files";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = [ maintainers.mmahut ];
|
||||||
|
};
|
||||||
|
}
|
@ -1088,6 +1088,8 @@ in {
|
|||||||
|
|
||||||
aniso8601 = callPackage ../development/python-modules/aniso8601 {};
|
aniso8601 = callPackage ../development/python-modules/aniso8601 {};
|
||||||
|
|
||||||
|
anonip = callPackage ../development/python-modules/anonip { };
|
||||||
|
|
||||||
asgiref = callPackage ../development/python-modules/asgiref { };
|
asgiref = callPackage ../development/python-modules/asgiref { };
|
||||||
|
|
||||||
python-editor = callPackage ../development/python-modules/python-editor { };
|
python-editor = callPackage ../development/python-modules/python-editor { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user