summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-16 14:56:16 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:59 +0100
commita33fdca836b8f2c7f7291f042f70e437a863655a (patch)
tree23c19ce2768b08a6238d9df20bd77b0ff33d2746 /gnu/packages
parent520ab74a46f6f481765682f0926f31798deed37c (diff)
gnu: Add python-hatch-requirements-txt.
* gnu/packages/python-build.scm (python-hatch-requirements-txt): New variable. Change-Id: I210329908614e73c49d2644cc083d7cc5a8d5d6b
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-build.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 5a1d32d4b23..7fb3ece8a76 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -905,6 +905,26 @@ terms of concatenated fragments that are based on static strings, files and
parts of files defined using cut-off points or regular expressions.")
(license license:expat)))
+(define-public python-hatch-requirements-txt
+ (package
+ (name "python-hatch-requirements-txt")
+ (version "0.4.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "hatch_requirements_txt" version))
+ (sha256
+ (base32 "083xakilrmy0ymh34s9wm8x8s7s8vn7ij33xz9avn1gxb1bnws1c"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ;avoid extra test dependencies
+ (propagated-inputs (list python-hatchling python-packaging-bootstrap))
+ (home-page "https://github.com/repo-helper/hatch-requirements-txt")
+ (synopsis "Hatchling plugin to read requirements.txt")
+ (description
+ "This package implements a functionality to read project dependencies
+from requirements.txt.")
+ (license license:expat)))
+
(define-public python-hatch-vcs
(package
(name "python-hatch-vcs")