587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{ lib
|
|
, anyio
|
|
, async-generator
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cpyparsing
|
|
, ipykernel
|
|
, mypy
|
|
, pexpect
|
|
, pygments
|
|
, pytestCheckHook
|
|
, prompt-toolkit
|
|
, setuptools
|
|
, tkinter
|
|
, watchdog
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "coconut";
|
|
version = "3.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "evhub";
|
|
repo = "coconut";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-xlA/yryUXZCU56gJ0y7M9JHgWkvXiB09ywyf0sP1o+4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
anyio
|
|
async-generator
|
|
cpyparsing
|
|
ipykernel
|
|
mypy
|
|
pygments
|
|
prompt-toolkit
|
|
setuptools
|
|
watchdog
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pexpect
|
|
pytestCheckHook
|
|
tkinter
|
|
];
|
|
|
|
# Currently most tests have performance issues
|
|
pytestFlagsArray = [
|
|
"coconut/tests/constants_test.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"coconut"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple, elegant, Pythonic functional programming";
|
|
homepage = "http://coconut-lang.org/";
|
|
changelog = "https://github.com/evhub/coconut/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fabianhjr ];
|
|
};
|
|
}
|