at 22.05-pre 577 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "parts"; 8 version = "1.1.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "2212129476f6d285c3aaab309b80b83664d13dca5a42c5ca3500bd32130af7ec"; 13 }; 14 15 # Project has no tests 16 doCheck = false; 17 pythonImportsCheck = [ "parts" ]; 18 19 meta = with lib; { 20 description = "Python library for common list functions related to partitioning lists"; 21 homepage = "https://github.com/lapets/parts"; 22 license = with licenses; [ mit ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}