summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Burns <52847440+r-burns@users.noreply.github.com>2021-11-20 18:11:22 -0800
committerGitHub <noreply@github.com>2021-11-20 18:11:22 -0800
commit7464e88b0d6dcb782e1807e35d529eb60f4c2547 (patch)
tree678a3acf54e6283d8557695f0a7aac06e31f1c17
parent97f488533e67299fe0bf656c50f4b80ffef82e0b (diff)
parent42a83770be09b3ac21b18da6d03c95c8a3398ecd (diff)
Merge pull request #146790 from Prillan/ZHF-fix-envisage-build
python3Packages.envisage: disable tests of broken optional feature
-rw-r--r--pkgs/development/python-modules/envisage/default.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/envisage/default.nix b/pkgs/development/python-modules/envisage/default.nix
index 20051804328b..b8513fd1d9ae 100644
--- a/pkgs/development/python-modules/envisage/default.nix
+++ b/pkgs/development/python-modules/envisage/default.nix
@@ -1,7 +1,12 @@
-{ lib, fetchPypi, isPy27
+{ lib
+, fetchPypi
+, isPy27
, buildPythonPackage
-, traits, apptools, pytestCheckHook
-, ipykernel, ipython, setuptools
+, traits
+, apptools
+, pytestCheckHook
+, ipython
+, setuptools
}:
buildPythonPackage rec {
@@ -15,6 +20,8 @@ buildPythonPackage rec {
sha256 = "8864c29aa344f7ac26eeb94788798f2d0cc791dcf95c632da8d79ebc580e114c";
};
+ # for the optional dependency ipykernel, only versions < 6 are
+ # supported, so it's not included in the tests, and not propagated
propagatedBuildInputs = [ traits apptools setuptools ];
preCheck = ''
@@ -22,7 +29,8 @@ buildPythonPackage rec {
'';
checkInputs = [
- ipykernel ipython pytestCheckHook
+ ipython
+ pytestCheckHook
];
meta = with lib; {