lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pytest-pythonpath: drop

Obsoleted by https://github.com/pytest-dev/pytest/pull/9134, which was
released as part of pytest 7.0.0.

It has pytest<7 pinned, and we only have the single pytest version, so
it can be removed.

+7 -32
+1 -2
pkgs/development/python-modules/nplusone/default.nix
··· 8 8 , mock 9 9 , peewee 10 10 , pytest-django 11 - , pytest-pythonpath 12 11 , pytestCheckHook 13 12 , six 14 13 , sqlalchemy ··· 38 37 mock 39 38 peewee 40 39 pytest-django 41 - pytest-pythonpath 42 40 pytestCheckHook 43 41 sqlalchemy 44 42 webtest ··· 54 52 55 53 postPatch = '' 56 54 substituteInPlace pytest.ini \ 55 + --replace "python_paths" "pythonpath" \ 57 56 --replace "--cov nplusone --cov-report term-missing" "" 58 57 ''; 59 58
-26
pkgs/development/python-modules/pytest-pythonpath/default.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, pytest }: 2 - 3 - buildPythonPackage rec { 4 - pname = "pytest-pythonpath"; 5 - version = "0.7.4"; 6 - 7 - src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "sha256-ZOGVsjqPjAxjH7Fogtmtb6QTftHylh3dFdUgZc1DXbY="; 10 - }; 11 - 12 - buildInputs = [ pytest ]; 13 - checkInputs = [ pytest ]; 14 - 15 - checkPhase = '' 16 - pytest 17 - ''; 18 - 19 - meta = with lib; { 20 - description = 21 - "Pytest plugin for adding to the PYTHONPATH from command line or configs"; 22 - homepage = "https://github.com/bigsassy/pytest-pythonpath"; 23 - maintainers = with maintainers; [ cript0nauta ]; 24 - license = licenses.mit; 25 - }; 26 - }
+5 -2
pkgs/development/python-modules/pyverilog/default.nix
··· 5 5 , jinja2 6 6 , ply 7 7 , verilog 8 - , pytest-pythonpath 9 8 , pytestCheckHook 10 9 }: 11 10 ··· 32 31 verilog 33 32 ]; 34 33 34 + preCheck = '' 35 + substituteInPlace pytest.ini \ 36 + --replace "python_paths" "pythonpath" 37 + ''; 38 + 35 39 checkInputs = [ 36 - pytest-pythonpath 37 40 pytestCheckHook 38 41 ]; 39 42
+1
pkgs/top-level/python-aliases.nix
··· 92 92 pytest_6 = pytest; # added 2022-02-10 93 93 pytestcov = pytest-cov; # added 2021-01-04 94 94 pytest-pep8 = pytestpep8; # added 2021-01-04 95 + pytest-pythonpath = throw "pytest-pythonpath is obsolete as of pytest 7.0.0 and has been removed"; # added 2022-03-09 95 96 pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10 96 97 pytestquickcheck = pytest-quickcheck; # added 2021-07-20 97 98 pytestrunner = pytest-runner; # added 2021-01-04
-2
pkgs/top-level/python-packages.nix
··· 7891 7891 7892 7892 pytest-pylint = callPackage ../development/python-modules/pytest-pylint { }; 7893 7893 7894 - pytest-pythonpath = callPackage ../development/python-modules/pytest-pythonpath { }; 7895 - 7896 7894 pytest-qt = callPackage ../development/python-modules/pytest-qt { }; 7897 7895 7898 7896 pytest-quickcheck = callPackage ../development/python-modules/pytest-quickcheck { };