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