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