diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/version-control.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index e4c31d3b956..8d499867cbc 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm | |||
| @@ -4638,19 +4638,20 @@ Git project instead of @command{git filter-branch}.") | |||
| 4638 | (define-public gitlint | 4638 | (define-public gitlint |
| 4639 | (package | 4639 | (package |
| 4640 | (name "gitlint") | 4640 | (name "gitlint") |
| 4641 | (version "0.17.0") | 4641 | (version "0.19.1") |
| 4642 | (source (origin | 4642 | (source (origin |
| 4643 | (method url-fetch) | 4643 | (method url-fetch) |
| 4644 | ;; the gitlint-core pypi package contains the actual gitlint | 4644 | ;; the gitlint-core pypi package contains the actual gitlint |
| 4645 | ;; code; the gitlint package only pulls in gitlint-core with | 4645 | ;; code; the gitlint package only pulls in gitlint-core with |
| 4646 | ;; stricter dependency versioning | 4646 | ;; stricter dependency versioning |
| 4647 | (uri (pypi-uri "gitlint-core" version)) | 4647 | (uri (pypi-uri "gitlint_core" version)) |
| 4648 | (sha256 | 4648 | (sha256 |
| 4649 | (base32 | 4649 | (base32 |
| 4650 | "14cn89biys8r7mwcdgllv371k34km9k1941ylxf53a7sxwrzsbbp")))) | 4650 | "14lrlbdbnm1biczd54iymbgi5k02hnxmxxh3kr5650gm7yq7gybv")))) |
| 4651 | (build-system python-build-system) | 4651 | (build-system pyproject-build-system) |
| 4652 | (arguments | 4652 | (arguments |
| 4653 | (list | 4653 | (list |
| 4654 | #:tests? #f ;not included in PyPI, see pyproejct.toml | ||
| 4654 | #:phases | 4655 | #:phases |
| 4655 | #~(modify-phases %standard-phases | 4656 | #~(modify-phases %standard-phases |
| 4656 | (add-before 'build 'loosen-requirements | 4657 | (add-before 'build 'loosen-requirements |
| @@ -4663,6 +4664,9 @@ Git project instead of @command{git filter-branch}.") | |||
| 4663 | ;; force using subprocess instead of sh so git does not need | 4664 | ;; force using subprocess instead of sh so git does not need |
| 4664 | ;; to be a propagated input | 4665 | ;; to be a propagated input |
| 4665 | (("if USE_SH_LIB") "if False"))))))) | 4666 | (("if USE_SH_LIB") "if False"))))))) |
| 4667 | (native-inputs | ||
| 4668 | (list python-hatch-vcs | ||
| 4669 | python-hatchling)) | ||
| 4666 | (inputs | 4670 | (inputs |
| 4667 | (list git python-arrow python-click python-sh)) | 4671 | (list git python-arrow python-click python-sh)) |
| 4668 | (home-page "https://jorisroovers.com/gitlint/") | 4672 | (home-page "https://jorisroovers.com/gitlint/") |
