[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/45: gnu: Add python-devpi-process.
From: |
guix-commits |
Subject: |
26/45: gnu: Add python-devpi-process. |
Date: |
Tue, 17 Dec 2024 11:50:34 -0500 (EST) |
rekado pushed a commit to branch python-team
in repository guix.
commit 3afc4c25968adf303627d5984f059fd45974cf51
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Dec 16 21:05:59 2024 +0100
gnu: Add python-devpi-process.
* gnu/packages/python-web.scm (python-devpi-process): New variable.
Change-Id: Ic1829dfbb108a45c44423f570eeb604ddfe73795
---
gnu/packages/python-web.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9d81dab21f..58a28fae8e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -225,6 +225,52 @@ devpi-server. It allows to upload, test and install
packages from devpi
indexes.")
(license license:expat)))
+(define-public python-devpi-process
+ (package
+ (name "python-devpi-process")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "devpi_process" version))
+ (sha256
+ (base32 "0v26i8bs0n8f2ikizwyvq77fw3l0nsyl4wj8yff0r3y351ydqbs1"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ ;; Our package is too old, sorry.
+ (substitute* "pyproject.toml"
+ (("typing-extensions>=4.12.2")
+ "typing-extensions>=4.10.0"))))
+ (add-after 'unpack 'patch-tool-locations
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "src/devpi_process/__init__.py"
+ (("_exe\\(\"devpi-init\"\\)")
+ (string-append "\"" (search-input-file inputs
"/bin/devpi-init") "\""))
+ (("_exe\\(\"devpi-server\"\\)")
+ (string-append "\"" (search-input-file inputs
"/bin/devpi-server") "\""))
+ (("_exe\\(\"devpi\"\\)")
+ (string-append "\"" (search-input-file inputs "/bin/devpi")
"\""))))))))
+ (propagated-inputs (list python-devpi-client python-devpi-server
+ python-typing-extensions))
+ (native-inputs
+ (list python-covdefaults
+ python-hatchling
+ python-hatch-vcs
+ python-httpx
+ python-pytest
+ python-pytest-cov))
+ (home-page "https://github.com/devpi/devpi")
+ (synopsis "API to create and use a devpi server process")
+ (description
+ "This package provides a programmatic API to create and use a devpi
+server process.")
+ (license license:expat)))
+
(define-public python-devpi-server
(package
(name "python-devpi-server")
- 19/45: gnu: Add python-legacy-cgi., (continued)
- 19/45: gnu: Add python-legacy-cgi., guix-commits, 2024/12/17
- 18/45: gnu: Add python-repoze-lru., guix-commits, 2024/12/17
- 22/45: gnu: Add python-pypitoken., guix-commits, 2024/12/17
- 45/45: gnu: python-pydantic: Fix build., guix-commits, 2024/12/17
- 06/45: gnu: python-qdldl: Add missing input., guix-commits, 2024/12/17
- 04/45: gnu: python-bokeh: Fix build., guix-commits, 2024/12/17
- 03/45: gnu: python-statmake: Remove obsolete build phase., guix-commits, 2024/12/17
- 07/45: gnu: python-cachetools: Update to 5.5.0., guix-commits, 2024/12/17
- 14/45: gnu: python-awkward-cpp: Update to 43., guix-commits, 2024/12/17
- 24/45: gnu: Add python-devpi-server., guix-commits, 2024/12/17
- 26/45: gnu: Add python-devpi-process.,
guix-commits <=
- 44/45: gnu: python-tox: Simplify., guix-commits, 2024/12/17
- 21/45: gnu: Add python-lazy., guix-commits, 2024/12/17
- 20/45: gnu: Add python-packaging-legacy., guix-commits, 2024/12/17
- 30/45: gnu: python-biom-format: Use pyproject-build-system., guix-commits, 2024/12/17
- 33/45: gnu: python-colorama: Update to 0.4.6., guix-commits, 2024/12/17
- 35/45: gnu: python-platformdirs: Update to 4.3.6., guix-commits, 2024/12/17
- 38/45: gnu: python-devtools: Simplify., guix-commits, 2024/12/17
- 43/45: gnu: python-a2wsgi: Disable one test., guix-commits, 2024/12/17
- 28/45: gnu: python-webcolors: Update to 24.11.1., guix-commits, 2024/12/17
- 08/45: gnu: python-pyproject-api: Update to 1.8.0., guix-commits, 2024/12/17