summary refs log tree commit diff
path: root/pkgs/development/python-modules/aspy-refactor-imports/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/aspy-refactor-imports/default.nix')
-rw-r--r--pkgs/development/python-modules/aspy-refactor-imports/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/aspy-refactor-imports/default.nix b/pkgs/development/python-modules/aspy-refactor-imports/default.nix
index 9ec0cf55d42..cfe935e16e8 100644
--- a/pkgs/development/python-modules/aspy-refactor-imports/default.nix
+++ b/pkgs/development/python-modules/aspy-refactor-imports/default.nix
@@ -3,6 +3,7 @@
 , fetchFromGitHub
 , pytestCheckHook
 , pythonOlder
+, stdenv
 }:
 
 buildPythonPackage rec {
@@ -25,9 +26,12 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  # fails on darwin due to case-insensitive file system
+  disabledTests = lib.optional stdenv.isDarwin ["test_application_directory_case"];
+
   meta = with lib; {
     description = "Utilities for refactoring imports in python-like syntax.";
-    homepage = "https://github.com/asottile/reorder_python_imports";
+    homepage = "https://github.com/asottile/aspy.refactor_imports";
     license = licenses.mit;
     maintainers = with maintainers; [ gador ];
   };