python3Packages.aspy-refactor-imports: fix url and darwin test failure
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
parent
26e7906a96
commit
2f4da397f0
1 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
, stdenv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -25,9 +26,12 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# fails on darwin due to case-insensitive file system
|
||||||
|
disabledTests = lib.optional stdenv.isDarwin ["test_application_directory_case"];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Utilities for refactoring imports in python-like syntax.";
|
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;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ gador ];
|
maintainers = with maintainers; [ gador ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue