Merge pull request #239199 from natsukium/pytest-ordering/remove

python3Packages.pytest-ordering: remove
This commit is contained in:
Martin Weinelt
2023-06-28 17:18:00 +02:00
committed by GitHub
3 changed files with 1 additions and 34 deletions
@@ -1,32 +0,0 @@
{ lib, fetchFromGitHub, buildPythonPackage
, pytest }:
buildPythonPackage rec {
pname = "pytest-ordering";
version = "unstable-2019-06-19";
# Pypi lacks tests/
# Resolves PytestUnknownMarkWarning from pytest
src = fetchFromGitHub {
owner = "ftobia";
repo = pname;
rev = "492697ee26633cc31d329c1ceaa468375ee8ee9c";
sha256 = "1xim0kj5g37p1skgvp8gdylpx949krmx60w3pw6j1m1h7sakmddn";
};
nativeCheckInputs = [
pytest
];
checkPhase = ''
pytest tests
'';
meta = with lib; {
homepage = "https://github.com/ftobia/pytest-ordering";
description = "Pytest plugin to run your tests in a specific order";
license = licenses.mit;
broken = true; # See https://github.com/NixOS/nixpkgs/pull/122264
maintainers = with maintainers; [ eadwu ];
};
}
+1
View File
@@ -251,6 +251,7 @@ mapAliases ({
PyStemmer = pystemmer; # added 2023-02-19
pytest_6 = pytest; # added 2022-02-10
pytestcov = pytest-cov; # added 2021-01-04
pytest-ordering = throw "pytest-ordering has been removed, since it is no longer maintained and broken"; # added 2023-06-22
pytest-pep8 = pytestpep8; # added 2021-01-04
pytest-pep257 = throw "pytest-pep257 was removed, as the pep257 package was migrated into pycodestyle"; # added 2022-04-12
pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09
-2
View File
@@ -9739,8 +9739,6 @@ self: super: with self; {
pytest-order = callPackage ../development/python-modules/pytest-order { };
pytest-ordering = callPackage ../development/python-modules/pytest-ordering { };
pytest-param-files = callPackage ../development/python-modules/pytest-param-files { };
pytest-playwright = callPackage ../development/python-modules/pytest-playwright {};