From 3fbab17e320481e68b6db9cfe96049c966bfa661 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 30 Sep 2024 18:46:43 +0200 Subject: [PATCH] python312Packages.jaraco-functools: refactor - enable tests - add changelog to meta --- .../python-modules/jaraco-functools/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/jaraco-functools/default.nix b/pkgs/development/python-modules/jaraco-functools/default.nix index a5c019bc3c85..9f63221575dd 100644 --- a/pkgs/development/python-modules/jaraco-functools/default.nix +++ b/pkgs/development/python-modules/jaraco-functools/default.nix @@ -2,9 +2,12 @@ lib, buildPythonPackage, fetchPypi, + jaraco-classes, more-itertools, - setuptools, + pytestCheckHook, setuptools-scm, + setuptools, + pythonOlder, }: buildPythonPackage rec { @@ -12,20 +15,25 @@ buildPythonPackage rec { version = "4.1.0"; pyproject = true; + disabled = pythonOlder "3.8"; + src = fetchPypi { pname = "jaraco_functools"; inherit version; hash = "sha256-cPfg4q4HZJjiElYjJegFIE/Akte0wX4OhslZ4klwGp0="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm ]; - propagatedBuildInputs = [ more-itertools ]; + dependencies = [ more-itertools ]; - doCheck = false; + nativeCheckInputs = [ + jaraco-classes + pytestCheckHook + ]; pythonNamespaces = [ "jaraco" ]; @@ -34,6 +42,7 @@ buildPythonPackage rec { meta = with lib; { description = "Additional functools in the spirit of stdlib's functools"; homepage = "https://github.com/jaraco/jaraco.functools"; + changelog = "https://github.com/jaraco/jaraco.functools/blob/v${version}/NEWS.rst"; license = licenses.mit; maintainers = [ ]; };