pythonPackages.littleutils: init at 0.2.2

This commit is contained in:
Jaakko Luttinen 2020-05-21 11:50:27 +03:00 committed by Jonathan Ringer
parent 1115df837e
commit b8fa662585
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "littleutils";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "0vwijrylppmk0nbddqvn527r9cg3zw8d6zk6r58hslry42jf7jp6";
};
# This tiny package has no unit tests at all
doCheck = false;
pythonImportsCheck = [ "littleutils" ];
meta = with lib; {
description = "Small collection of Python utility functions";
homepage = "https://github.com/alexmojaki/littleutils";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}

View file

@ -3517,6 +3517,8 @@ in {
lirc = disabledIf isPy27 (toPythonModule (pkgs.lirc.override { python3 = python; }));
littleutils = callPackage ../development/python-modules/littleutils { };
livelossplot = callPackage ../development/python-modules/livelossplot { };
livereload = callPackage ../development/python-modules/livereload { };