Unverified Commit 13327288 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

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

python3Packages.marshmallow-enum: remove
parents 9f5db466 f32def75
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 = [
+0 −2
Original line number Diff line number Diff line
@@ -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
+1 −3
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
, buildPythonPackage
, fetchFromGitHub
, marshmallow
, marshmallow-enum
, pytestCheckHook
, pythonAtLeast
, pythonOlder
@@ -15,7 +14,7 @@ buildPythonPackage rec {
  version = "8.6.1";
  format = "setuptools";

  disabled = pythonOlder "3.6";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "lovasoa";
@@ -30,7 +29,6 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    marshmallow-enum
    pytestCheckHook
    typeguard
  ];
+0 −43
Original line number Diff line number Diff line
{ 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 = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
Loading