pythonPackages.autologging: init at 1.2.1

This commit is contained in:
James Kay 2018-11-06 12:02:33 +00:00
parent 19091a5178
commit 5fdbec1417
No known key found for this signature in database
GPG Key ID: 76BE7F17BF11AD15
2 changed files with 21 additions and 0 deletions

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "Autologging";
version = "1.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "16v2k16m433fxlvl7f0081n67rpxhs2hyn1ivkx1xs5qjxpv5n3k";
extension = "zip";
};
meta = with stdenv.lib; {
homepage = http://ninthtest.info/python-autologging/;
description = "Easier logging and tracing for Python classes";
license = licenses.mit;
maintainers = with maintainers; [ twey ];
};
}

@ -202,6 +202,8 @@ in {
autograd = callPackage ../development/python-modules/autograd { };
autologging = callPackage ../development/python-modules/autologging { };
automat = callPackage ../development/python-modules/automat { };
awkward = callPackage ../development/python-modules/awkward { };