Unverified Commit a31c3d5e authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

Merge pull request #217544 from fabaff/mox-remove

python310Packages.mox: remove
parents 254b4765 0cbae1a9
Loading
Loading
Loading
Loading
+0 −41
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, six
}:

buildPythonPackage rec {
  pname = "mox";
  version = "0.7.8";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "ivancrneto";
    repo = "pymox";
    rev = "v${version}";
    hash = "sha256-gODE9IGDk3WtO8iPOlp98fGp6Ih2laA3YlOHmq62m8Y=";
  };

  propagatedBuildInputs = [
    six
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "mox"
  ];

  meta = with lib; {
    description = "Mock object framework";
    homepage = "https://github.com/ivancrneto/pymox";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -130,6 +130,7 @@ mapAliases ({
  mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
  mistune_0_8 = throw "mistune_0_8 was removed because it was outdated and insecure"; # added 2022-08-12
  mistune_2_0 = mistune; # added 2022-08-12
  mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21
  mutmut = throw "mutmut has been promoted to a top-level attribute"; # added 2022-10-02
  net2grid = gridnet; # add 2022-04-22
  nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16
+0 −2
Original line number Diff line number Diff line
@@ -6074,8 +6074,6 @@ self: super: with self; {

  mox3 = callPackage ../development/python-modules/mox3 { };

  mox = callPackage ../development/python-modules/mox { };

  mpd2 = callPackage ../development/python-modules/mpd2 { };

  mpi4py = callPackage ../development/python-modules/mpi4py { };