[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
196/377: gnu: Add python-resolvelib.
From: |
guix-commits |
Subject: |
196/377: gnu: Add python-resolvelib. |
Date: |
Thu, 2 Sep 2021 17:55:30 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit afcbaadac5d6add0bb493471220d81d4acb630e5
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Aug 24 10:12:16 2021 -0400
gnu: Add python-resolvelib.
* gnu/packages/python-xyz.scm (python-resolvelib): New variable.
---
gnu/packages/python-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3215d91..83db31a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10188,6 +10188,40 @@ files with Python and JavaScript style inline
comments. Its API is very
similar to the Python standard library's @code{json} module.")
(license license:expat)))
+(define-public python-resolvelib
+ (package
+ (name "python-resolvelib")
+ (version "0.7.1")
+ (source
+ (origin
+ ;; Tests are missing from the PyPI release.
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sarugaku/resolvelib")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1fqz75riagizihvf4j7wc3zjw6kmg1dd8sf49aszyml105kb33n8"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? inputs outputs #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "pytest")))))))
+ (native-inputs
+ `(("python-commentjson" ,python-commentjson)
+ ("python-packaging" ,python-packaging)
+ ("python-pytest" ,python-pytest)))
+ (home-page "https://github.com/sarugaku/resolvelib")
+ (synopsis "Abstract dependencies resolver")
+ (description "The ResolveLib library provides a @code{Resolver} class that
+includes dependency resolution logic.")
+ (license license:isc)))
+
(define-public python-commonmark
(package
(name "python-commonmark")
- 169/377: gnu: Add r-emdist., (continued)
- 169/377: gnu: Add r-emdist., guix-commits, 2021/09/02
- 173/377: gnu: postgresql-11: Update to 11.13., guix-commits, 2021/09/02
- 175/377: gnu: postgresql-9.6: Update to 9.6.23., guix-commits, 2021/09/02
- 178/377: gnu: man-pages: Update to 5.13., guix-commits, 2021/09/02
- 179/377: gnu: opencl-headers: Update to 2021.06.30 and switch to CMake., guix-commits, 2021/09/02
- 182/377: gnu: Add opencl-icd-loader., guix-commits, 2021/09/02
- 183/377: gnu: ocl-icd: Replace with opencl-icd-loader., guix-commits, 2021/09/02
- 184/377: gnu: Add clpeak., guix-commits, 2021/09/02
- 188/377: gnu: mame: Update to 0.235., guix-commits, 2021/09/02
- 190/377: images: pinebook-pro: Fix the agetty baud rate., guix-commits, 2021/09/02
- 196/377: gnu: Add python-resolvelib.,
guix-commits <=
- 197/377: gnu: Add python-resolvelib-0.5., guix-commits, 2021/09/02
- 193/377: gnu: bootloader: Support multiple targets., guix-commits, 2021/09/02
- 199/377: gnu: Add python-pyspnego., guix-commits, 2021/09/02
- 200/377: gnu: python-pytest-6: Update to 6.2.4 and propagate iniconfig., guix-commits, 2021/09/02
- 202/377: gnu: python-rope: Update to 0.19.0 and remove python2-rope., guix-commits, 2021/09/02
- 205/377: gnu: python-pytest-forked: Update to 1.3.0 and run test suite., guix-commits, 2021/09/02
- 204/377: gnu: python-py-next: Update to 1.10.0., guix-commits, 2021/09/02
- 211/377: gnu: ansible: Update to 4.4.0., guix-commits, 2021/09/02
- 209/377: gnu: Add python-pytest-xdist-next., guix-commits, 2021/09/02
- 207/377: gnu: python-pytest-mock: Update to 3.6.1 and run test suite., guix-commits, 2021/09/02