pythonPackages.littleutils: init at 0.2.2
This commit is contained in:
parent
1115df837e
commit
b8fa662585
25
pkgs/development/python-modules/littleutils/default.nix
Normal file
25
pkgs/development/python-modules/littleutils/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user