pythonPackages.clikit: fix dependency on crashtest

From clikit's pyproject.toml:

> Crashtest is only needed for Python ^3.6 to provide
> better error messsages
This commit is contained in:
ento 2020-07-22 11:34:58 -08:00 committed by Frederik Rietdijk
parent aff753d184
commit 4e0f91170f

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
, isPy27
, isPy27, pythonAtLeast
, pylev, pastel, typing, enum34, crashtest }:
buildPythonPackage rec {
@ -12,8 +12,10 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
crashtest pylev pastel
] ++ lib.optionals isPy27 [ typing enum34 ];
pylev pastel
]
++ lib.optionals (pythonAtLeast "3.6") [ crashtest ]
++ lib.optionals isPy27 [ typing enum34 ];
# The Pypi tarball doesn't include tests, and the GitHub source isn't
# buildable until we bootstrap poetry, see