Files
nixpkgs/pkgs/development/python-modules/pytest-random-order/default.nix
Martin Weinelt 70fe6da9bd python3Packages.pytest-random-order: 1.1.1 -> 1.2.0
https://github.com/jbasko/pytest-random-order/releases/tag/v1.2.0

This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:47 +02:00

48 lines
969 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
py,
pytest,
pytest-xdist,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-random-order";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jbasko";
repo = "pytest-random-order";
tag = "v${version}";
hash = "sha256-c282PrdXxG7WChnkpLWe059OmtTOl1Mn6yWgMRfCjBA=";
};
build-system = [
setuptools
setuptools-scm
];
buildInputs = [ pytest ];
nativeCheckInputs = [
py
pytest-xdist
pytestCheckHook
];
pythonImportsCheck = [ "random_order" ];
meta = with lib; {
homepage = "https://github.com/jbasko/pytest-random-order";
description = "Randomise the order of tests with some control over the randomness";
changelog = "https://github.com/jbasko/pytest-random-order/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}