Merge pull request #301837 from Luflosi/update/python3Packages.pytest-order

python3Packages.pytest-order: 1.2.0 -> 1.2.1
This commit is contained in:
Mario Rodas 2024-04-16 06:42:15 -05:00 committed by GitHub
commit 2f93f740b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "pytest-order";
version = "1.2.0";
version = "1.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-lE+GttRBqnsdqA+AHGq2W4S766Ry0KehLrQ7omZQEBo=";
hash = "sha256-RFG9iCG6T6IQlFWi/MiCr2DvjlPgnSRNZ2dL4I9W6sM=";
};
buildInputs = [ pytest ];
@ -27,10 +27,12 @@ buildPythonPackage rec {
pytest-mock
];
meta = {
strictDeps = true;
meta = with lib; {
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 ];
license = licenses.mit;
maintainers = with maintainers; [ jacg Luflosi ];
};
}