mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-aspectlib: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-aspectlib): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:test-flags>: Disable problematic tests. [native-inputs]: Add python-setuptools, python-wheel. [synopsis, description]: Improve style. Change-Id: I3303d1b0d3ff7c73d6511aeb3ee03c21e85698bf Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
a049790ba1
commit
ec1bade27d
1 changed files with 21 additions and 9 deletions
|
@ -37336,15 +37336,27 @@ It implements advanced Python dictionaries with dot notation access.")
|
||||||
(version "1.5.2")
|
(version "1.5.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "aspectlib" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ionelmc/python-aspectlib")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1am4ycf292zbmgz791z393v63w7qrynf8q5p9db2wwf2qj1fqxfj"))))
|
(base32 "1mfhflg33684gkp6ckkywshn4xa3vqaia521kcagaxgr3xm6c9pv"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-flags
|
||||||
|
#~(list ;; XXX: Require more dependencies.
|
||||||
|
"--ignore=tests/test_integrations.py"
|
||||||
|
"--ignore=tests/test_integrations_py3.py"
|
||||||
|
;; XXX: Unimportant warning errors.
|
||||||
|
"-k" (string-append "not test_story_empty_play_proxy_class"
|
||||||
|
" and not test_story_half_play_proxy_class"))))
|
||||||
|
(native-inputs (list python-pytest python-setuptools python-tornado python-wheel))
|
||||||
(propagated-inputs (list python-fields))
|
(propagated-inputs (list python-fields))
|
||||||
(home-page "https://github.com/ionelmc/python-aspectlib")
|
(home-page "https://github.com/ionelmc/python-aspectlib")
|
||||||
(synopsis
|
(synopsis "Python monkey-patching and decorators")
|
||||||
"Python monkey-patching and decorators")
|
|
||||||
(description
|
(description
|
||||||
"This package provides an aspect-oriented programming, monkey-patch
|
"This package provides an aspect-oriented programming, monkey-patch
|
||||||
and decorators library. It is useful when changing behavior in existing
|
and decorators library. It is useful when changing behavior in existing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue