diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-17 21:10:17 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:41 +0100 |
| commit | e8e51fdb27365c61df949a3f79458f3e6325b559 (patch) | |
| tree | af0c9d944b829a31261fcb87bc945028f3b37c52 /gnu/packages/version-control.scm | |
| parent | 2c41b24d6010be6d595601017c022f31896bfb2c (diff) | |
gnu: python-gitpython: Update to 3.1.44.
* gnu/packages/version-control.scm (python-gitpython): Update to 3.1.44.
[build-system]: Pyproject.
[propagated-inputs]: Remove python-typing-extensions.
[native-inputs]: Remove python-ddt and python-nose; add python-setuptools.
Change-Id: I540fb49f6f9df54712ba4b0c8ef94c7b471aa6a1
Diffstat (limited to 'gnu/packages/version-control.scm')
| -rw-r--r-- | gnu/packages/version-control.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 1142924efdb..b3ca37dbf18 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -1979,14 +1979,14 @@ allowing to handle large objects with a small memory footprint.") (define-public python-gitpython (package (name "python-gitpython") - (version "3.1.24") + (version "3.1.44") (source (origin (method url-fetch) - (uri (pypi-uri "GitPython" version)) + (uri (pypi-uri "gitpython" version)) (sha256 (base32 - "1rarp97cpjnhi106k2yhb7kygdyflmlgq0icxv3ggzl4wvszv0yz")))) - (build-system python-build-system) + "0scj4hqk6msyzqvq70wk6583qzwn33w601hvn0c59gskcar30zn8")))) + (build-system pyproject-build-system) (arguments (list #:tests? #f ;XXX: tests can only be run within the GitPython repository #:phases @@ -2001,9 +2001,9 @@ allowing to handle large objects with a small memory footprint.") (inputs (list git-minimal/pinned)) (propagated-inputs - (list python-gitdb python-typing-extensions)) + (list python-gitdb)) (native-inputs - (list python-ddt python-nose)) + (list python-setuptools)) (home-page "https://github.com/gitpython-developers/GitPython") (synopsis "Python library for interacting with Git repositories") (description |
