mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
python3Packages.marshmallow-enum: remove
This commit is contained in:
parent
b112111fbb
commit
18eaf127f1
@ -2,7 +2,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, hypothesis
|
, hypothesis
|
||||||
, marshmallow-enum
|
, marshmallow
|
||||||
, poetry-core
|
, poetry-core
|
||||||
, poetry-dynamic-versioning
|
, poetry-dynamic-versioning
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
@ -36,7 +36,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
typing-inspect
|
typing-inspect
|
||||||
marshmallow-enum
|
marshmallow
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
, flask-jwt-extended
|
, flask-jwt-extended
|
||||||
, jsonschema
|
, jsonschema
|
||||||
, marshmallow
|
, marshmallow
|
||||||
, marshmallow-enum
|
|
||||||
, marshmallow-sqlalchemy
|
, marshmallow-sqlalchemy
|
||||||
, python-dateutil
|
, python-dateutil
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
@ -53,7 +52,6 @@ buildPythonPackage rec {
|
|||||||
flask-jwt-extended
|
flask-jwt-extended
|
||||||
jsonschema
|
jsonschema
|
||||||
marshmallow
|
marshmallow
|
||||||
marshmallow-enum
|
|
||||||
marshmallow-sqlalchemy
|
marshmallow-sqlalchemy
|
||||||
python-dateutil
|
python-dateutil
|
||||||
prison
|
prison
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, marshmallow
|
, marshmallow
|
||||||
, marshmallow-enum
|
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonAtLeast
|
, pythonAtLeast
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
@ -30,7 +29,6 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
marshmallow-enum
|
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
typeguard
|
typeguard
|
||||||
];
|
];
|
||||||
|
@ -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 = [ ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -278,6 +278,7 @@ mapAliases ({
|
|||||||
mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29
|
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
|
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
|
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
|
markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19
|
||||||
memory_profiler = memory-profiler; # added 2023-10-09
|
memory_profiler = memory-profiler; # added 2023-10-09
|
||||||
mir_eval = mir-eval; # added 2024-01-07
|
mir_eval = mir-eval; # added 2024-01-07
|
||||||
|
@ -7202,8 +7202,6 @@ self: super: with self; {
|
|||||||
|
|
||||||
marshmallow-dataclass = callPackage ../development/python-modules/marshmallow-dataclass { };
|
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-oneofschema = callPackage ../development/python-modules/marshmallow-oneofschema { };
|
||||||
|
|
||||||
marshmallow-polyfield = callPackage ../development/python-modules/marshmallow-polyfield { };
|
marshmallow-polyfield = callPackage ../development/python-modules/marshmallow-polyfield { };
|
||||||
|
Loading…
Reference in New Issue
Block a user