python3Packages.marshmallow-enum: remove

This commit is contained in:
Sigmanificient 2024-05-10 04:51:34 +02:00
parent b112111fbb
commit 18eaf127f1
6 changed files with 3 additions and 51 deletions

View File

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, hypothesis
, marshmallow-enum
, marshmallow
, poetry-core
, poetry-dynamic-versioning
, pytestCheckHook
@ -36,7 +36,7 @@ buildPythonPackage rec {
dependencies = [
typing-inspect
marshmallow-enum
marshmallow
];
nativeCheckInputs = [

View File

@ -15,7 +15,6 @@
, flask-jwt-extended
, jsonschema
, marshmallow
, marshmallow-enum
, marshmallow-sqlalchemy
, python-dateutil
, pythonOlder
@ -53,7 +52,6 @@ buildPythonPackage rec {
flask-jwt-extended
jsonschema
marshmallow
marshmallow-enum
marshmallow-sqlalchemy
python-dateutil
prison

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, fetchFromGitHub
, marshmallow
, marshmallow-enum
, pytestCheckHook
, pythonAtLeast
, pythonOlder
@ -30,7 +29,6 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
marshmallow-enum
pytestCheckHook
typeguard
];

View File

@ -1,43 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, marshmallow
, pytest7CheckHook
}:
buildPythonPackage rec {
pname = "marshmallow-enum";
version = "1.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "justanr";
repo = "marshmallow_enum";
rev = "v${version}";
sha256 = "1ihrcmyfjabivg6hc44i59hnw5ijlg1byv3zs1rqxfynp8xr7398";
};
postPatch = ''
sed -i '/addopts/d' tox.ini
'';
build-system = [
setuptools
];
dependencies = [
marshmallow
];
nativeCheckInputs = [
pytest7CheckHook
];
meta = with lib; {
description = "Enum field for Marshmallow";
homepage = "https://github.com/justanr/marshmallow_enum";
license = licenses.mit;
maintainers = [ ];
};
}

View File

@ -278,6 +278,7 @@ mapAliases ({
mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29
mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20
marshmallow-enum = throw "marshmallow-enum has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10
markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19
memory_profiler = memory-profiler; # added 2023-10-09
mir_eval = mir-eval; # added 2024-01-07

View File

@ -7202,8 +7202,6 @@ self: super: with self; {
marshmallow-dataclass = callPackage ../development/python-modules/marshmallow-dataclass { };
marshmallow-enum = callPackage ../development/python-modules/marshmallow-enum { };
marshmallow-oneofschema = callPackage ../development/python-modules/marshmallow-oneofschema { };
marshmallow-polyfield = callPackage ../development/python-modules/marshmallow-polyfield { };