linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-order / default.nix
blob8e10cd4f587a84c6086cbd3e2b0dbd95f4bac530
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , pytest
5 , pytest-xdist
6 , pytest-dependency
7 , pytest-mock
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "pytest-order";
13   version = "0.9.5";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "9c9e4f1b060414c642e88ad98ca60f1fd37937debd704bd8f4a2ef8e08b9cb6d";
18   };
20   buildInputs = [ pytest ];
22   checkInputs = [
23     pytestCheckHook
24     pytest-xdist
25     pytest-dependency
26     pytest-mock
27   ];
29   meta = {
30     description = "Pytest plugin that allows you to customize the order in which your tests are run";
31     homepage = "https://github.com/mrbean-bremen/pytest-order";
32     license = lib.licenses.mit;
33     maintainers = [ lib.maintainers.jacg ];
34   };