pythonPackages.logutils: refactor move to python-modules
This commit is contained in:
parent
976162ed90
commit
b889d7a43f
21
pkgs/development/python-modules/logutils/default.nix
Normal file
21
pkgs/development/python-modules/logutils/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "logutils";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "173w55fg3hp5dhx7xvssmgqkcv5fjlaik11w5dah2fxygkjvhhj0";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Logging utilities";
|
||||
homepage = http://code.google.com/p/logutils/;
|
||||
license = licenses.bsd0;
|
||||
};
|
||||
|
||||
}
|
@ -3039,15 +3039,7 @@ in {
|
||||
|
||||
nine = callPackage ../development/python-modules/nine { };
|
||||
|
||||
logutils = buildPythonPackage rec {
|
||||
name = "logutils-${version}";
|
||||
version = "0.3.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/l/logutils/${name}.tar.gz";
|
||||
sha256 = "173w55fg3hp5dhx7xvssmgqkcv5fjlaik11w5dah2fxygkjvhhj0";
|
||||
};
|
||||
};
|
||||
logutils = callPackage ../development/python-modules/logutils { };
|
||||
|
||||
ldappool = callPackage ../development/python-modules/ldappool { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user