python312Packages.arnparse: drop

This commit is contained in:
seth 2024-10-04 21:26:23 -04:00
parent e385a8531a
commit 1e2e73f867
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86
3 changed files with 1 additions and 32 deletions

View File

@ -1,30 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "arnparse";
version = "0.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "PokaInc";
repo = "arnparse";
rev = version;
hash = "sha256-2+wxzYoS/KJXjYM6lZguxbr2Oxobo0eFNnzWZHLi0WM=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "arnparse" ];
meta = with lib; {
description = "Parse ARNs using Python";
homepage = "https://github.com/PokaInc/arnparse";
license = licenses.mit;
maintainers = [ ];
};
}

View File

@ -54,6 +54,7 @@ mapAliases ({
anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05
argon2_cffi = argon2-cffi; # added 2022-05-09
arnparse = throw "arnparse has been removed because the upstream repository was archived in 2023"; # Added 2024-10-04
APScheduler = apscheduler; # added 2023-02-19
async_generator = async-generator; # added 2023-08-08
async_stagger = async-stagger; # added 2023-08-08

View File

@ -792,8 +792,6 @@ self: super: with self; {
arpy = callPackage ../development/python-modules/arpy { };
arnparse = callPackage ../development/python-modules/arnparse { };
array-api-compat = callPackage ../development/python-modules/array-api-compat { };
array-api-strict = callPackage ../development/python-modules/array-api-strict { };