Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 510 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5buildPythonPackage rec { 6 pname = "banal"; 7 version = "1.0.6"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "2fe02c9305f53168441948f4a03dfbfa2eacc73db30db4a93309083cb0e250a5"; 12 }; 13 14 # no tests 15 doCheck = false; 16 17 pythonImportsCheck = [ 18 "banal" 19 ]; 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}