Unverified Commit 1e2e73f8 authored by seth's avatar seth
Browse files

python312Packages.arnparse: drop

parent e385a853
Loading
Loading
Loading
Loading
+0 −30
Original line number Diff line number Diff line
{
  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 = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };