From 1eeb4a246c7081babce122c417bdc373b1d7d6ed Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 15 Apr 2023 21:42:42 -0400 Subject: gnu: Add python-trove-classifiers. * gnu/packages/python-build.scm (python-trove-classifiers): New variable. --- gnu/packages/python-build.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 9f1ed4af22..f01a2b59ac 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -28,6 +28,7 @@ #:use-module (gnu packages) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (guix gexp) #:use-module (guix download) #:use-module (guix git-download) @@ -213,6 +214,26 @@ Python file, so it can be easily copied into your project.") @code{python-toml}.") (license license:expat))) +(define-public python-trove-classifiers + (package + (name "python-trove-classifiers") + (version "2023.3.9") + (source (origin + (method url-fetch) + (uri (pypi-uri "trove-classifiers" version)) + (sha256 + (base32 + "00xvldq94dy0zxz40idbbx40smrkfvq75r26ywszxg6lq7wg4hpf")))) + (build-system pyproject-build-system) + (arguments (list #:build-backend "setuptools.build_meta" + #:tests? #f)) ;keep dependencies to a minimum + (native-inputs (list python-wheel)) + (home-page "https://github.com/pypa/trove-classifiers") + (synopsis "Canonical source for classifiers on PyPI") + (description "This package is the canonical source for classifiers use on +PyPI (pypi.org).") + (license license:asl2.0))) + ;;; ;;; Python builder packages. -- cgit 1.4.1