python3Packages.importlab: fix darwin support
This commit is contained in:
parent
22def17ea7
commit
21ef6dd691
1 changed files with 3 additions and 1 deletions
|
@ -21,10 +21,12 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
disabledTestPaths = [ "tests/test_parsepy.py" ];
|
disabledTestPaths = [ "tests/test_parsepy.py" ];
|
||||||
|
|
||||||
|
# Test fails on darwin filesystem
|
||||||
|
disabledTests = [ "testIsDir" ];
|
||||||
|
|
||||||
pythonImportsCheck = [ "importlab" ];
|
pythonImportsCheck = [ "importlab" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
description = "A library that automatically infers dependencies for Python files";
|
description = "A library that automatically infers dependencies for Python files";
|
||||||
homepage = "https://github.com/google/importlab";
|
homepage = "https://github.com/google/importlab";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
Loading…
Reference in a new issue