1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5}:
6buildPythonPackage rec {
7 pname = "banal";
8 version = "1.0.6";
9 format = "setuptools";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "2fe02c9305f53168441948f4a03dfbfa2eacc73db30db4a93309083cb0e250a5";
14 };
15
16 # no tests
17 doCheck = false;
18
19 pythonImportsCheck = [ "banal" ];
20
21 meta = with lib; {
22 description = "Commons of banal micro-functions for Python";
23 homepage = "https://github.com/pudo/banal";
24 license = licenses.mit;
25 maintainers = [ ];
26 };
27}