1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{
lib,
anyio,
async-generator,
buildPythonPackage,
fetchFromGitHub,
cpyparsing,
ipykernel,
mypy,
pexpect,
pygments,
pytestCheckHook,
pythonAtLeast,
prompt-toolkit,
setuptools,
tkinter,
watchdog,
}:
buildPythonPackage rec {
pname = "coconut";
version = "3.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "evhub";
repo = "coconut";
tag = "v${version}";
hash = "sha256-Vd6ZY3PlbPOy63/0/0YJ1U2PpsVdctOoInyKftj//cM=";
};
disabled = pythonAtLeast "3.13";
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
anyio
async-generator
cpyparsing
ipykernel
mypy
pygments
prompt-toolkit
setuptools
watchdog
];
nativeCheckInputs = [
pexpect
pytestCheckHook
tkinter
];
# Currently most tests have performance issues
enabledTestPaths = [ "coconut/tests/constants_test.py" ];
pythonImportsCheck = [ "coconut" ];
meta = {
description = "Simple, elegant, Pythonic functional programming";
homepage = "http://coconut-lang.org/";
changelog = "https://github.com/evhub/coconut/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fabianhjr ];
};
}
|