about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-11-30 18:08:04 +0900
committerGitHub <noreply@github.com>2023-11-30 18:08:04 +0900
commit3f84b6a6e47c21e2913315abd31cfb5351a986dc (patch)
treecc6c6bee196b032f0f1c2361b6e3a2740404e1b6 /pkgs/development/python-modules
parent687dc6e3428508c7bc610204750b3641105b1a94 (diff)
parent21ef6dd691f58af0a583eeced805a0ddcb5e00a4 (diff)
Merge pull request #270826 from emilytrau/importlab-darwin
python3Packages.importlab: fix darwin support
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/importlab/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/importlab/default.nix b/pkgs/development/python-modules/importlab/default.nix
index 9937ff89d3346..8fd01ca7008e7 100644
--- a/pkgs/development/python-modules/importlab/default.nix
+++ b/pkgs/development/python-modules/importlab/default.nix
@@ -21,10 +21,12 @@ buildPythonPackage rec {
 
   disabledTestPaths = [ "tests/test_parsepy.py" ];
 
+  # Test fails on darwin filesystem
+  disabledTests = [ "testIsDir" ];
+
   pythonImportsCheck = [ "importlab" ];
 
   meta = with lib; {
-    broken = stdenv.isDarwin;
     description = "A library that automatically infers dependencies for Python files";
     homepage = "https://github.com/google/importlab";
     license = licenses.mit;