mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: Add python-hatch-vcs.
* gnu/packages/python-build.scm (python-hatch-vcs): New variable.
This commit is contained in:
parent
545b9548d5
commit
2bf851e4b8
1 changed files with 19 additions and 0 deletions
|
@ -675,3 +675,22 @@ (define-public python-hatchling
|
|||
@item Responsive CLI, ~2-3x faster than equivalent tools.
|
||||
@end itemize")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-hatch-vcs
|
||||
(package
|
||||
(name "python-hatch-vcs")
|
||||
(version "0.3.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "hatch_vcs" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1viz2mdfxfqpsd5f30410q6smj90qfxihvy9idzwd0p4ziy11iff"))))
|
||||
(arguments (list #:tests? #f)) ;avoid extra test dependencies
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs (list python-hatchling python-setuptools-scm))
|
||||
(home-page "https://github.com/ofek/hatch-vcs")
|
||||
(synopsis "Hatch plugin for versioning with your preferred VCS")
|
||||
(description "This package is a plugin for Hatch that uses your preferred
|
||||
version control system (like Git) to determine project versions.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue