mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
Merge pull request #301837 from Luflosi/update/python3Packages.pytest-order
python3Packages.pytest-order: 1.2.0 -> 1.2.1
This commit is contained in:
commit
2f93f740b5
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user