mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
gnu: Add python-tempora.
* gnu/packages/python-xyz.scm (python-tempora): New variable.
This commit is contained in:
parent
a293faef3f
commit
0be033d3c5
1 changed files with 54 additions and 0 deletions
|
@ -21508,6 +21508,60 @@ (define-public python-tempdir
|
||||||
(define-public python2-tempdir
|
(define-public python2-tempdir
|
||||||
(package-with-python2 python-tempdir))
|
(package-with-python2 python-tempdir))
|
||||||
|
|
||||||
|
(define-public python-tempora
|
||||||
|
(package
|
||||||
|
(name "python-tempora")
|
||||||
|
(version "5.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "tempora" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "09wirlk5vmxlhl9rnxp7g5qz2nsd6b0gnzk5fczbz0s8lsbz386b"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; XXX: PEP 517 manual build copied from python-isort.
|
||||||
|
(replace 'build
|
||||||
|
(lambda _
|
||||||
|
(setenv "SOURCE_DATE_EPOCH" "315532800")
|
||||||
|
(invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
|
||||||
|
(replace 'install
|
||||||
|
(lambda _
|
||||||
|
(let ((whl (car (find-files "dist" "\\.whl$"))))
|
||||||
|
(invoke "pip" "--no-cache-dir" "--no-input"
|
||||||
|
"install" "--no-deps" "--prefix" #$output whl))))
|
||||||
|
(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" "-k" "not project")))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-pypa-build
|
||||||
|
python-freezegun
|
||||||
|
python-pytest
|
||||||
|
python-pytest-black
|
||||||
|
python-pytest-checkdocs
|
||||||
|
python-pytest-cov
|
||||||
|
python-pytest-enabler
|
||||||
|
python-pytest-flake8
|
||||||
|
python-pytest-freezegun
|
||||||
|
python-pytest-mypy
|
||||||
|
python-setuptools-scm
|
||||||
|
python-types-freezegun
|
||||||
|
python-types-pytz))
|
||||||
|
(propagated-inputs (list python-jaraco-functools python-pytz))
|
||||||
|
(home-page "https://github.com/jaraco/tempora")
|
||||||
|
(synopsis "Python date and time objects and routines")
|
||||||
|
(description "The @code{tempora} Python library contains miscellaneous
|
||||||
|
date and time related utilities and constants, routines for measuring,
|
||||||
|
profiling, and getting datetime-aware @acronym{UTC, Coordinated Universal
|
||||||
|
Time} values as well as an event scheduler.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-activepapers
|
(define-public python-activepapers
|
||||||
(package
|
(package
|
||||||
(name "python-activepapers")
|
(name "python-activepapers")
|
||||||
|
|
Loading…
Reference in a new issue