nixpkgs/pkgs/development/python-modules/aspy-refactor-imports/default.nix
Florian Brandes 2f4da397f0
python3Packages.aspy-refactor-imports: fix url and darwin test failure
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2022-05-23 22:43:22 +02:00

39 lines
875 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, stdenv
}:
buildPythonPackage rec {
pname = "aspy-refactor-imports";
version = "3.0.1";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "asottile";
repo = "aspy.refactor_imports";
rev = "v${version}";
sha256 = "MlCM3zNTQZJ1RWrTQG0AN28RUepWINKCeLENykbu2nw=";
};
pythonImportsCheck = [
"aspy.refactor_imports"
];
checkInputs = [
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/aspy.refactor_imports";
license = licenses.mit;
maintainers = with maintainers; [ gador ];
};
}