Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 462 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "funcy"; 8 version = "1.14"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1i55c5kjvkb3y2jqfnlx3iirrd512mxjdhjpm1l2xya6nk1q9vkm"; 13 }; 14 15 # No tests 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Collection of fancy functional tools focused on practicality"; 20 homepage = "https://funcy.readthedocs.org/"; 21 license = licenses.bsd3; 22 }; 23 24}