1{ buildPythonPackage
2, fetchPypi
3, lib
4}:
5
6buildPythonPackage rec {
7 pname = "littleutils";
8 version = "0.2.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0vwijrylppmk0nbddqvn527r9cg3zw8d6zk6r58hslry42jf7jp6";
13 };
14
15 # This tiny package has no unit tests at all
16 doCheck = false;
17 pythonImportsCheck = [ "littleutils" ];
18
19 meta = with lib; {
20 description = "Small collection of Python utility functions";
21 homepage = "https://github.com/alexmojaki/littleutils";
22 license = licenses.mit;
23 maintainers = with maintainers; [ jluttine ];
24 };
25}