mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pyro-api: Switch to pyproject.
* gnu/packages/machine-learning.scm (python-pyro-api): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: Iab866450e9ab7104ecba8ff21bf34e8a4226e1b2 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
fc194e7755
commit
bac69decd3
1 changed files with 13 additions and 8 deletions
|
@ -6375,20 +6375,25 @@ and Numpy.")
|
||||||
(package
|
(package
|
||||||
(name "python-pyro-api")
|
(name "python-pyro-api")
|
||||||
(version "0.1.2")
|
(version "0.1.2")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "pyro-api" version))
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/pyro-ppl/pyro-api")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "17x7niagx43cajqq67dxmssr7q94db6axyg154y7vqdxzp25hf7g"))))
|
||||||
"086r2h6x9i5d9ayl1x65lx6p84rlydzsn8xingxc588ab3ch1fd1"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments '(#:tests? #false)) ;requires pyro
|
(arguments '(#:tests? #false)) ;requires pyro
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-flake8
|
(list python-flake8
|
||||||
python-ipython
|
python-ipython
|
||||||
python-pytest
|
python-pytest
|
||||||
|
python-setuptools
|
||||||
python-sphinx
|
python-sphinx
|
||||||
python-sphinx-rtd-theme))
|
python-sphinx-rtd-theme
|
||||||
|
python-wheel))
|
||||||
(home-page "https://github.com/pyro-ppl/pyro-api")
|
(home-page "https://github.com/pyro-ppl/pyro-api")
|
||||||
(synopsis "Generic API for dispatch to Pyro backends")
|
(synopsis "Generic API for dispatch to Pyro backends")
|
||||||
(description "This package provides a generic API for dispatch to Pyro backends.")
|
(description "This package provides a generic API for dispatch to Pyro backends.")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue