Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 473 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "funcy"; 8 version = "1.11"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "b5e399eb739afcb5a3ad38302b7817f6e7fee6f5fc79b213a5d82ea8bce0d9e6"; 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 = "http://funcy.readthedocs.org/"; 21 license = licenses.bsd3; 22 }; 23 24}