504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
36 lines
727 B
Nix
36 lines
727 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, lib
|
|
, pytest
|
|
, pytest-xdist
|
|
, pytest-dependency
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-order";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-lE+GttRBqnsdqA+AHGq2W4S766Ry0KehLrQ7omZQEBo=";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
pytest-dependency
|
|
pytest-mock
|
|
];
|
|
|
|
meta = {
|
|
description = "Pytest plugin that allows you to customize the order in which your tests are run";
|
|
homepage = "https://github.com/pytest-dev/pytest-order";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.jacg ];
|
|
};
|
|
}
|