diff --git a/pkgs/development/python-modules/trove-classifiers/default.nix b/pkgs/development/python-modules/trove-classifiers/default.nix index c8e99f7971ec..c8dbe1ffe51e 100644 --- a/pkgs/development/python-modules/trove-classifiers/default.nix +++ b/pkgs/development/python-modules/trove-classifiers/default.nix @@ -3,17 +3,19 @@ , fetchPypi , calver , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "trove-classifiers"; - version = "2022.12.22"; - + version = "2023.1.12"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchPypi { inherit pname version; - sha256 = "sha256-/g/j8IWYcWGu4qWoU8fMfN9kUVxZZdV62Wj92Mw7A2I="; + hash = "sha256-66Rg2DJg/PNkjXyKy/IgQ0T9eF+JD7rstoZKf7nwaS4="; }; nativeBuildInputs = [ @@ -29,6 +31,7 @@ buildPythonPackage rec { meta = { description = "Canonical source for classifiers on PyPI"; homepage = "https://github.com/pypa/trove-classifiers"; + changelog = "https://github.com/pypa/trove-classifiers/releases/tag/${version}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ dotlambda ]; };