pythonPackages.logutils: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user