mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-jaraco-classes.
* gnu/packages/python-xyz.scm (python-jaraco-classes): New variable.
This commit is contained in:
parent
529318bd22
commit
f761974b12
1 changed files with 38 additions and 0 deletions
|
@ -8557,6 +8557,44 @@ finding unresolved symbols in Python code and their corresponding imports.")
|
||||||
"@code{inotify-simple} is a simple wrapper around inotify library.")
|
"@code{inotify-simple} is a simple wrapper around inotify library.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-jaraco-classes
|
||||||
|
(package
|
||||||
|
(name "python-jaraco-classes")
|
||||||
|
(version "3.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "jaraco.classes" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0d6g7qvfv1jlzbzh6asprqdblqd59grvlvr3nwbdqdqrmwlbfm7d"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
;; Do not test the myproject.toml build as it tries to pull
|
||||||
|
;; dependencies from the Internet.
|
||||||
|
(invoke "pytest" "-vv" "-k" "not project")))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pytest
|
||||||
|
python-pytest-black
|
||||||
|
python-pytest-checkdocs
|
||||||
|
python-pytest-cov
|
||||||
|
python-pytest-enabler-bootstrap ;OK since not propagated
|
||||||
|
python-pytest-flake8
|
||||||
|
python-pytest-mypy
|
||||||
|
python-setuptools-scm
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs (list python-more-itertools))
|
||||||
|
(home-page "https://github.com/jaraco/jaraco.classes")
|
||||||
|
(synopsis "Utility functions for Python class constructs")
|
||||||
|
(description "This Python library contains utility functions for Python
|
||||||
|
class constructs.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
;;; Variant used to break a cycle with python-pytest-enabler.
|
;;; Variant used to break a cycle with python-pytest-enabler.
|
||||||
(define-public python-jaraco-context-bootstrap
|
(define-public python-jaraco-context-bootstrap
|
||||||
(hidden-package
|
(hidden-package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue