python311Packages.mox3: remove (#338475)

This commit is contained in:
Nick Cao 2024-08-31 09:49:28 -04:00 committed by GitHub
commit d4c1f24ab4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 48 deletions

View File

@ -1,46 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
pythonAtLeast,
subunit,
testrepository,
testtools,
six,
pbr,
fixtures,
}:
buildPythonPackage rec {
pname = "mox3";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
src = fetchPypi {
inherit pname version;
sha256 = "8a526b7b9b6341f541a9aef3e08c93fd84a5373fe89d4cc51dd571f085b2363c";
};
buildInputs = [
subunit
testrepository
testtools
six
];
propagatedBuildInputs = [
pbr
fixtures
];
# Disabling as several tests dependencies are missing:
# https://opendev.org/openstack/mox3/src/branch/master/test-requirements.txt
doCheck = false;
meta = with lib; {
description = "Mock object framework for Python";
homepage = "https://docs.openstack.org/mox3/latest/";
license = licenses.asl20;
};
}

View File

@ -326,6 +326,7 @@ mapAliases ({
mitmproxy-wireguard = throw "mitmproxy-wireguard has been removed because it was replaced by upstream with mitmproxy-rs"; # added 2023-11-06
mkdocs-minify = mkdocs-minify-plugin; # added 2023-11-28
mox = throw "mox was removed because it is unmaintained"; # added 2023-02-21
mox3 = throw "mox3 was removed because it is unmaintained"; # added 2024-08-30
mrkd = throw "mrkd has been promoted to a top-level attribute name: `pkgs.mrkd`"; # added 2023-08-01
multi_key_dict = multi-key-dict; # added 2023-11-05
mutmut = throw "mutmut has been promoted to a top-level attribute name: `pkgs.mutmut`"; # added 2022-10-02

View File

@ -8066,8 +8066,6 @@ self: super: with self; {
moviepy = callPackage ../development/python-modules/moviepy { };
mox3 = callPackage ../development/python-modules/mox3 { };
mozart-api = callPackage ../development/python-modules/mozart-api { };
mozilla-django-oidc = callPackage ../development/python-modules/mozilla-django-oidc { };