19 buildPythonPackage rec {
24 src = fetchFromGitHub {
27 rev = "refs/tags/v${version}";
28 hash = "sha256-Vd6ZY3PlbPOy63/0/0YJ1U2PpsVdctOoInyKftj//cM=";
31 nativeBuildInputs = [ setuptools ];
33 propagatedBuildInputs = [
51 # Currently most tests have performance issues
52 pytestFlagsArray = [ "coconut/tests/constants_test.py" ];
54 pythonImportsCheck = [ "coconut" ];
57 description = "Simple, elegant, Pythonic functional programming";
58 homepage = "http://coconut-lang.org/";
59 changelog = "https://github.com/evhub/coconut/releases/tag/v${version}";
60 license = licenses.asl20;
61 maintainers = with maintainers; [ fabianhjr ];