mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 09:22:05 -05:00
gnu: Add python-pyct.
* gnu/packages/python-xyz.scm (python-pyct): New variable. Change-Id: Ia207d5aa9d66fd2bf3616049c042fbb12e50928d
This commit is contained in:
parent
6f71c4ab01
commit
5f186e2f79
1 changed files with 29 additions and 0 deletions
|
@ -9512,6 +9512,35 @@ (define-public python-pycodestyle
|
|||
@url{http://www.python.org/dev/peps/pep-0008/,PEP 8}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pyct
|
||||
(package
|
||||
(name "python-pyct")
|
||||
(version "0.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pyct" version))
|
||||
(sha256
|
||||
(base32 "1856dbrcpc0nxxhlfh3dqzz7xxn5sdi600q45hsprqyqrg2lm7yx"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags
|
||||
;; These tests want to download example data from the internet.
|
||||
'(list "-k" (string-append
|
||||
"not test_examples_with_use_test_data"
|
||||
" and not test_examples_using_test_data_and_force_with_prexisting_content_in_target"
|
||||
" and not test_fetch_data_using_test_data_with_no_file_in_data_copies_from_stubs"
|
||||
" and not test_fetch_data_using_test_data_and_force_with_file_in_data_over_writes"))))
|
||||
(propagated-inputs (list python-param python-pyyaml))
|
||||
(native-inputs (list python-flake8 python-pytest))
|
||||
(home-page "https://github.com/holoviz-dev/pyct")
|
||||
(synopsis "Common packaging tasks")
|
||||
(description
|
||||
"This Python package provides utilities to run common packaging tasks,
|
||||
e.g. copy examples, fetch data, etc.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-multidict
|
||||
(package
|
||||
(name "python-multidict")
|
||||
|
|
Loading…
Reference in a new issue