python3Packages.pytest-order: remove explicit strictDeps

This commit is contained in:
Stefan Frijters
2026-09-18 15:54:17 +02:00
parent 848e26f68d
commit 79f8dd4ded

View File

@@ -9,7 +9,7 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pytest-order";
version = "1.5.0";
pyproject = true;
@@ -17,7 +17,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "pytest-order";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-LLQy5dO3OWmm7W9eI8yfrOFVp9MQOU+pjoAyWl03tZ0=";
};
@@ -30,8 +30,6 @@ buildPythonPackage rec {
pytest-mock
];
strictDeps = true;
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";
@@ -41,4 +39,4 @@ buildPythonPackage rec {
Luflosi
];
};
}
})