mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 12:34:00 +00:00
python3Packages.coconut: 3.0.3 -> 3.0.4
This commit is contained in:
parent
4312f471ef
commit
92baf47994
@ -8,25 +8,42 @@
|
||||
, pygments
|
||||
, pytestCheckHook
|
||||
, prompt-toolkit
|
||||
, setuptools
|
||||
, tkinter
|
||||
, watchdog
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "coconut";
|
||||
version = "3.0.3";
|
||||
format = "setuptools";
|
||||
version = "3.0.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "evhub";
|
||||
repo = "coconut";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-u1tcIu0U1VZrUx2hVdtRDv1N4jVf176kQSw47/7lOXY=";
|
||||
hash = "sha256-TIYep9EuCfcN8bp0vkaoB5W626lrD4PVh+oYKmVrfeY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cpyparsing ipykernel mypy pygments prompt-toolkit watchdog ];
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pexpect pytestCheckHook tkinter ];
|
||||
propagatedBuildInputs = [
|
||||
cpyparsing
|
||||
ipykernel
|
||||
mypy
|
||||
pygments
|
||||
prompt-toolkit
|
||||
setuptools
|
||||
watchdog
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pexpect
|
||||
pytestCheckHook
|
||||
tkinter
|
||||
];
|
||||
|
||||
# Currently most tests have performance issues
|
||||
pytestFlagsArray = [
|
||||
|
Loading…
Reference in New Issue
Block a user