Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / funcy / default.nix
blobbafaf0fdb1f1048e6a3758507a48050f625b935c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "funcy";
9   version = "2.0";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-OWMxXVnUHG8wwEvJEOEKtQo6xKIlhov6lv7tEz3wdcs=";
17   };
19   # No tests
20   doCheck = false;
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   };