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 , buildPythonPackage 3 , fetchFromGitHub 4 , hypothesis 5 - , marshmallow-enum 6 , poetry-core 7 , poetry-dynamic-versioning 8 , pytestCheckHook ··· 36 37 dependencies = [ 38 typing-inspect 39 - marshmallow-enum 40 ]; 41 42 nativeCheckInputs = [
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , hypothesis 5 + , marshmallow 6 , poetry-core 7 , poetry-dynamic-versioning 8 , pytestCheckHook ··· 36 37 dependencies = [ 38 typing-inspect 39 + marshmallow 40 ]; 41 42 nativeCheckInputs = [
-2
pkgs/development/python-modules/flask-appbuilder/default.nix
··· 15 , flask-jwt-extended 16 , jsonschema 17 , marshmallow 18 - , marshmallow-enum 19 , marshmallow-sqlalchemy 20 , python-dateutil 21 , pythonOlder ··· 53 flask-jwt-extended 54 jsonschema 55 marshmallow 56 - marshmallow-enum 57 marshmallow-sqlalchemy 58 python-dateutil 59 prison
··· 15 , flask-jwt-extended 16 , jsonschema 17 , marshmallow 18 , marshmallow-sqlalchemy 19 , python-dateutil 20 , pythonOlder ··· 52 flask-jwt-extended 53 jsonschema 54 marshmallow 55 marshmallow-sqlalchemy 56 python-dateutil 57 prison
+1 -3
pkgs/development/python-modules/marshmallow-dataclass/default.nix
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , marshmallow 5 - , marshmallow-enum 6 , pytestCheckHook 7 , pythonAtLeast 8 , pythonOlder ··· 15 version = "8.6.1"; 16 format = "setuptools"; 17 18 - disabled = pythonOlder "3.6"; 19 20 src = fetchFromGitHub { 21 owner = "lovasoa"; ··· 30 ]; 31 32 nativeCheckInputs = [ 33 - marshmallow-enum 34 pytestCheckHook 35 typeguard 36 ];
··· 2 , buildPythonPackage 3 , fetchFromGitHub 4 , marshmallow 5 , pytestCheckHook 6 , pythonAtLeast 7 , pythonOlder ··· 14 version = "8.6.1"; 15 format = "setuptools"; 16 17 + disabled = pythonOlder "3.7"; 18 19 src = fetchFromGitHub { 20 owner = "lovasoa"; ··· 29 ]; 30 31 nativeCheckInputs = [ 32 pytestCheckHook 33 typeguard 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 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29 279 mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29 280 manticore = throw "manticore has been removed because its dependency wasm no longer builds and is unmaintained"; # added 2023-05-20 281 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 282 memory_profiler = memory-profiler; # added 2023-10-09 283 mir_eval = mir-eval; # added 2024-01-07
··· 278 mailman-hyperkitty = throw "Please use pkgs.mailmanPackages.mailman-hyperkitty"; # added 2022-04-29 279 mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29 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 282 markerlib = throw "markerlib has been removed because it's abandoned since 2013"; # added 2023-05-19 283 memory_profiler = memory-profiler; # added 2023-10-09 284 mir_eval = mir-eval; # added 2024-01-07
-2
pkgs/top-level/python-packages.nix
··· 7204 7205 marshmallow-dataclass = callPackage ../development/python-modules/marshmallow-dataclass { }; 7206 7207 - marshmallow-enum = callPackage ../development/python-modules/marshmallow-enum { }; 7208 - 7209 marshmallow-oneofschema = callPackage ../development/python-modules/marshmallow-oneofschema { }; 7210 7211 marshmallow-polyfield = callPackage ../development/python-modules/marshmallow-polyfield { };
··· 7204 7205 marshmallow-dataclass = callPackage ../development/python-modules/marshmallow-dataclass { }; 7206 7207 marshmallow-oneofschema = callPackage ../development/python-modules/marshmallow-oneofschema { }; 7208 7209 marshmallow-polyfield = callPackage ../development/python-modules/marshmallow-polyfield { };