From c5ad55629128935845fc5719acf2e08b1ce94ce9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 20 Aug 2025 12:42:31 -0700 Subject: [PATCH] python3Packages.pytest-services: modernize --- .../development/python-modules/pytest-services/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pytest-services/default.nix b/pkgs/development/python-modules/pytest-services/default.nix index c45a7649629f..edc37a706137 100644 --- a/pkgs/development/python-modules/pytest-services/default.nix +++ b/pkgs/development/python-modules/pytest-services/default.nix @@ -6,7 +6,6 @@ pylibmc, pytest, pytestCheckHook, - pythonOlder, requests, setuptools-scm, toml, @@ -19,8 +18,6 @@ buildPythonPackage rec { version = "2.2.2"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "pytest-dev"; repo = "pytest-services"; @@ -28,14 +25,14 @@ buildPythonPackage rec { hash = "sha256-kWgqb7+3/hZKUz7B3PnfxHZq6yU3JUeJ+mruqrMD/NE="; }; - nativeBuildInputs = [ + build-system = [ setuptools-scm toml ]; buildInputs = [ pytest ]; - propagatedBuildInputs = [ + dependencies = [ requests psutil zc-lockfile