python311Packages.coconut: refactor

- add missing inputs
This commit is contained in:
Fabian Affolter 2024-03-08 09:33:54 +01:00
parent 94b96b2a4c
commit a2fe9a1f2d

View File

@ -1,4 +1,6 @@
{ lib
, anyio
, async-generator
, buildPythonPackage
, fetchFromGitHub
, cpyparsing
@ -30,6 +32,8 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
anyio
async-generator
cpyparsing
ipykernel
mypy
@ -50,11 +54,14 @@ buildPythonPackage rec {
"coconut/tests/constants_test.py"
];
pythonImportsCheck = [ "coconut" ];
pythonImportsCheck = [
"coconut"
];
meta = with lib; {
homepage = "http://coconut-lang.org/";
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 ];
};