1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5}: 6 7buildPythonPackage rec { 8 pname = "funcy"; 9 version = "2.0"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.7"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-OWMxXVnUHG8wwEvJEOEKtQo6xKIlhov6lv7tEz3wdcs="; 17 }; 18 19 # No tests 20 doCheck = false; 21 22 meta = with lib; { 23 description = "Collection of fancy functional tools focused on practicality"; 24 homepage = "https://funcy.readthedocs.org/"; 25 changelog = "https://github.com/Suor/funcy/blob/2.0/CHANGELOG"; 26 license = licenses.bsd3; 27 maintainers = with maintainers; [ ]; 28 }; 29 30}