nixpkgs/pkgs/development/python-modules/logutils/default.nix

22 lines
404 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "logutils";
2018-11-04 10:35:05 +00:00
version = "0.3.5";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:05 +00:00
sha256 = "bc058a25d5c209461f134e1f03cab637d66a7a5ccc12e593db56fbb279899a82";
};
meta = with stdenv.lib; {
description = "Logging utilities";
homepage = http://code.google.com/p/logutils/;
license = licenses.bsd0;
};
}