Files
nixpkgs/pkgs/development/python-modules/pytest-virtualenv/default.nix
Martin Weinelt 1b87ff961d python312Packages.pytest-fixture-config: patch out tests_require
The source is also reused in pytest-server-fixtures, pytest-shutil and
pytest-virtualenv, which now inherit the patch.
2024-08-06 18:18:41 +02:00

51 lines
1020 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
lib,
buildPythonPackage,
cmdline,
importlib-metadata,
mock,
pytestCheckHook,
pytest,
pytest-fixture-config,
pytest-shutil,
setuptools,
virtualenv,
}:
buildPythonPackage {
pname = "pytest-virtualenv";
inherit (pytest-fixture-config) version src patches;
pyproject = true;
postPatch = ''
cd pytest-virtualenv
'';
build-system = [ setuptools ];
buildInputs = [ pytest ];
dependencies = [
importlib-metadata
pytest-fixture-config
pytest-shutil
virtualenv
];
nativeCheckInputs = [
cmdline
mock
pytestCheckHook
];
# Don't run integration tests
disabledTestPaths = [ "tests/integration/*" ];
meta = with lib; {
description = "Create a Python virtual environment in your test that cleans up on teardown. The fixture has utility methods to install packages and list whats installed";
homepage = "https://github.com/manahl/pytest-plugins";
license = licenses.mit;
maintainers = with maintainers; [ ryansydnor ];
};
}