diff options
| author | Matthias Riße <matrss@0px.xyz> | 2025-09-12 18:12:37 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-14 23:06:29 +0100 |
| commit | e7f43d3837b15d73b9e6c462fadf22c330acd610 (patch) | |
| tree | cca7c717bbf00b753e02746f99495e27999f8010 /gnu/packages/python-xyz.scm | |
| parent | 45d98c9a90e36ca61448acec13cc6ede3f1aff7e (diff) | |
gnu: Add python-annexremote.
* gnu/packages/python-xyz.scm (python-annexremote): New variable.
Change-Id: If004031433cf63ff4c3eea3e32a7c403470e6bb0
Reviewed-by: Nicolas Graves <ngraves@ngraves.fr>
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1e6ab0d362..fcdf6782c9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -312,6 +312,33 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-26)) +(define-public python-annexremote + (package + (name "python-annexremote") + (version "1.6.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Lykos153/AnnexRemote") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fhd712z143mvsidlwhnq951cvkbfcpybbim3fiyn6r3l1r46a25")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools-next + python-setuptools-scm)) + (home-page "https://github.com/Lykos153/AnnexRemote") + (synopsis "Helper module to easily develop git-annex special remotes") + (description + "This package provides a helper module to develop special remotes for +git-annex. AnnexRemote implements the line-based external special remote +protocol of git-annex, while leaving the behavior of the remote up to the +user.") + (license license:gpl3))) + (define-public python-apprise (package (name "python-apprise") |
