From 09d0bd46196351f0234ca9782788c592ba3291b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 27 Aug 2025 17:02:10 -0700 Subject: [PATCH] python3Packages.trove-classifiers: 2025.5.9.12 -> 2025.8.26.11 Changelog: https://github.com/pypa/trove-classifiers/releases/tag/2025.8.6.13 https://github.com/pypa/trove-classifiers/releases/tag/2025.8.26.11 --- .../python-modules/trove-classifiers/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/trove-classifiers/default.nix b/pkgs/development/python-modules/trove-classifiers/default.nix index fd81fb715323..5cea96d34d29 100644 --- a/pkgs/development/python-modules/trove-classifiers/default.nix +++ b/pkgs/development/python-modules/trove-classifiers/default.nix @@ -4,24 +4,26 @@ fetchPypi, calver, pytestCheckHook, - pythonOlder, setuptools, }: let self = buildPythonPackage rec { pname = "trove-classifiers"; - version = "2025.5.9.12"; + version = "2025.8.26.11"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { pname = "trove_classifiers"; inherit version; - hash = "sha256-fKfIp6duLNMURoxnfGnRLMI1dxH8q0pg+HmUwVieXLU="; + hash = "sha256-5z7/8xfEkqeZAJL5wSZ2xwW/bP5AolipP2P0tMmUFDI="; }; + postPatch = '' + substituteInPlace tests/test_cli.py \ + --replace-fail "BINDIR = Path(sys.executable).parent" "BINDIR = '$out/bin'" + ''; + build-system = [ calver setuptools @@ -40,6 +42,7 @@ let homepage = "https://github.com/pypa/trove-classifiers"; changelog = "https://github.com/pypa/trove-classifiers/releases/tag/${version}"; license = lib.licenses.asl20; + mainProgram = "trove-classifiers"; maintainers = with lib.maintainers; [ dotlambda ]; }; };