python3Packages.aspy-refactor-imports: drop (#523031)

This commit is contained in:
Michael Daniels
2026-05-25 18:35:44 +00:00
committed by GitHub
3 changed files with 1 additions and 36 deletions
@@ -1,34 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
stdenv,
}:
buildPythonPackage rec {
pname = "aspy-refactor-imports";
version = "4.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "asottile";
repo = "aspy.refactor_imports";
tag = "v${version}";
sha256 = "sha256-f5wZfisKz9WGdq6u0rd/zg2CfMwWvQeR8xZQNbD7KfU=";
};
pythonImportsCheck = [ "aspy.refactor_imports" ];
nativeCheckInputs = [ pytestCheckHook ];
# fails on darwin due to case-insensitive file system
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ "test_application_directory_case" ];
meta = {
description = "Utilities for refactoring imports in python-like syntax";
homepage = "https://github.com/asottile/aspy.refactor_imports";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gador ];
};
}
+1
View File
@@ -88,6 +88,7 @@ mapAliases {
apkit = throw "apkit was removed because it is unmaintained upstream and different from apkit on PyPI"; # added 2025-09-13
APScheduler = throw "'APScheduler' has been renamed to/replaced by 'apscheduler'"; # Converted to throw 2025-10-29
argon2_cffi = throw "'argon2_cffi' has been renamed to/replaced by 'argon2-cffi'"; # Converted to throw 2025-10-29
aspy-refactor-imports = throw "'aspy-refactor-imports' has been renamed to/replaced by 'classify-imports'"; # Added 2026-05-22
astropy-extension-helpers = extension-helpers; # Added 2025-10-15
asyauth-bad = throw "'asyauth-bad' has been renamed to/replaced by 'badauth'"; # added 2025-11-06
async-dns = throw "'async-dns' has been removed as it was unmaintained upstream"; # Added 2026-03-23
-2
View File
@@ -1078,8 +1078,6 @@ self: super: with self; {
aspell-python = callPackage ../development/python-modules/aspell-python { };
aspy-refactor-imports = callPackage ../development/python-modules/aspy-refactor-imports { };
aspy-yaml = callPackage ../development/python-modules/aspy-yaml { };
assay = callPackage ../development/python-modules/assay { };