Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 35 lines 715 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4, pytest 5, pytest-xdist 6, pytest-dependency 7, pytest-mock 8, pytestCheckHook 9}: 10 11buildPythonPackage rec { 12 pname = "pytest-order"; 13 version = "0.10.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "2da32cb95e63fac6972d34f5ddb53997fc66305355425be0f55f4092d666293d"; 18 }; 19 20 buildInputs = [ pytest ]; 21 22 checkInputs = [ 23 pytestCheckHook 24 pytest-xdist 25 pytest-dependency 26 pytest-mock 27 ]; 28 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 }; 35}