mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
python311Packages.coconut: refactor
- add missing inputs
This commit is contained in:
parent
94b96b2a4c
commit
a2fe9a1f2d
@ -1,4 +1,6 @@
|
|||||||
{ lib
|
{ lib
|
||||||
|
, anyio
|
||||||
|
, async-generator
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cpyparsing
|
, cpyparsing
|
||||||
@ -30,6 +32,8 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
anyio
|
||||||
|
async-generator
|
||||||
cpyparsing
|
cpyparsing
|
||||||
ipykernel
|
ipykernel
|
||||||
mypy
|
mypy
|
||||||
@ -50,11 +54,14 @@ buildPythonPackage rec {
|
|||||||
"coconut/tests/constants_test.py"
|
"coconut/tests/constants_test.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "coconut" ];
|
pythonImportsCheck = [
|
||||||
|
"coconut"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://coconut-lang.org/";
|
|
||||||
description = "Simple, elegant, Pythonic functional programming";
|
description = "Simple, elegant, Pythonic functional programming";
|
||||||
|
homepage = "http://coconut-lang.org/";
|
||||||
|
changelog = "https://github.com/evhub/coconut/releases/tag/v${version}";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ fabianhjr ];
|
maintainers = with maintainers; [ fabianhjr ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user