nixpkgs/pkgs/development/python-modules/pytest-order/default.nix
Luflosi dfaee500d7
python3Packages.pytest-order: 0.10.0 -> 1.0.0
The PyPI project website links to https://github.com/pytest-dev/pytest-order as the repository, so change the homepage link.
2021-06-24 12:58:53 +02:00

36 lines
698 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
, pytest
, pytest-xdist
, pytest-dependency
, pytest-mock
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-order";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-WZeiYrMSNO67Rh+anvJGh79zICm0mYRaQ5i2nttawyE=";
};
buildInputs = [ pytest ];
checkInputs = [
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 ];
};
}