mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
python312Packages.arnparse: drop
This commit is contained in:
parent
e385a8531a
commit
1e2e73f867
@ -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 = [ ];
|
||||
};
|
||||
}
|
@ -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
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user