guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/96: gnu: Add python-trove-classifiers.


From: guix-commits
Subject: 02/96: gnu: Add python-trove-classifiers.
Date: Wed, 19 Apr 2023 21:41:04 -0400 (EDT)

apteryx pushed a commit to branch core-updates
in repository guix.

commit 1eeb4a246c7081babce122c417bdc373b1d7d6ed
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Apr 15 21:42:42 2023 -0400

    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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]