Merge pull request #310496 from Sigmanificient/marshmallow-enum-remove

python3Packages.marshmallow-enum: remove

authored by OTABI Tomoya and committed by GitHub 13327288 9f5db466

+4 -52
+2 -2
pkgs/development/python-modules/dataclasses-json/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , hypothesis 5 - , marshmallow-enum 5 + , marshmallow 6 6 , poetry-core 7 7 , poetry-dynamic-versioning 8 8 , pytestCheckHook ··· 36 36 37 37 dependencies = [ 38 38 typing-inspect 39 - marshmallow-enum 39 + marshmallow 40 40 ]; 41 41 42 42 nativeCheckInputs = [
-2
pkgs/development/python-modules/flask-appbuilder/default.nix
··· 15 15 , flask-jwt-extended 16 16 , jsonschema 17 17 , marshmallow 18 - , marshmallow-enum 19 18 , marshmallow-sqlalchemy 20 19 , python-dateutil 21 20 , pythonOlder ··· 53 52 flask-jwt-extended 54 53 jsonschema 55 54 marshmallow 56 - marshmallow-enum 57 55 marshmallow-sqlalchemy 58 56 python-dateutil 59 57 prison
+1 -3
pkgs/development/python-modules/marshmallow-dataclass/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , marshmallow 5 - , marshmallow-enum 6 5 , pytestCheckHook 7 6 , pythonAtLeast 8 7 , pythonOlder ··· 15 14 version = "8.6.1"; 16 15 format = "setuptools"; 17 16 18 - disabled = pythonOlder "3.6"; 17 + disabled = pythonOlder "3.7"; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "lovasoa"; ··· 30 29 ]; 31 30 32 31 nativeCheckInputs = [ 33 - marshmallow-enum 34 32 pytestCheckHook 35 33 typeguard 36 34 ];
-43
pkgs/development/python-modules/marshmallow-enum/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , setuptools 5 - , marshmallow 6 - , pytest7CheckHook 7 - }: 8 - 9 - buildPythonPackage rec { 10 - pname = "marshmallow-enum"; 11 - version = "1.5.1"; 12 - pyproject = true; 13 - 14 - src = fetchFromGitHub { 15 - owner = "justanr"; 16 - repo = "marshmallow_enum"; 17 - rev = "v${version}"; 18 - sha256 = "1ihrcmyfjabivg6hc44i59hnw5ijlg1byv3zs1rqxfynp8xr7398"; 19 - }; 20 - 21 - postPatch = '' 22 - sed -i '/addopts/d' tox.ini 23 - ''; 24 - 25 - build-system = [ 26 - setuptools 27 - ]; 28 - 29 - dependencies = [ 30 - marshmallow 31 - ]; 32 - 33 - nativeCheckInputs = [ 34 - pytest7CheckHook 35 - ]; 36 - 37 - meta = with lib; { 38 - description = "Enum field for Marshmallow"; 39 - homepage = "https://github.com/justanr/marshmallow_enum"; 40 - license = licenses.mit; 41 - maintainers = [ ]; 42 - }; 43 - }
+1
pkgs/top-level/python-aliases.nix
··· 278 278 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29 279 279 mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29 280 280 manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20 281 + marshmallow-enum = throw "marshmallow-enum has been removed because it was archived in 2022 and had no maintainer"; # added 2024-05-10 281 282 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 282 283 memory_profiler = memory-profiler; # added 2023-10-09 283 284 mir_eval = mir-eval; # added 2024-01-07
-2
pkgs/top-level/python-packages.nix
··· 7204 7204 7205 7205 marshmallow-dataclass = callPackage ../development/python-modules/marshmallow-dataclass { }; 7206 7206 7207 - marshmallow-enum = callPackage ../development/python-modules/marshmallow-enum { }; 7208 - 7209 7207 marshmallow-oneofschema = callPackage ../development/python-modules/marshmallow-oneofschema { }; 7210 7208 7211 7209 marshmallow-polyfield = callPackage ../development/python-modules/marshmallow-polyfield { };