mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: python-anaconda-client: Update to 1.8.0.
* gnu/packages/package-management.scm (python-anaconda-client): Update to 1.8.0. [propagated-inputs]: Add python-nbformat. [native-inputs]: Add python-freezegun. (python2-anaconda-client): Remove variable.
This commit is contained in:
parent
f7692617b6
commit
58f0913fad
1 changed files with 11 additions and 11 deletions
|
@ -77,6 +77,7 @@ (define-module (gnu packages package-management)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages popt)
|
#:use-module (gnu packages popt)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages python-check)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages serialization)
|
#:use-module (gnu packages serialization)
|
||||||
|
@ -736,7 +737,7 @@ (define-public rpm
|
||||||
(define-public python-anaconda-client
|
(define-public python-anaconda-client
|
||||||
(package
|
(package
|
||||||
(name "python-anaconda-client")
|
(name "python-anaconda-client")
|
||||||
(version "1.6.3")
|
(version "1.8.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -746,18 +747,20 @@ (define-public python-anaconda-client
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0w1bfxnydjl9qp53r2gcvr6vlpdqqilcrzqxrll9sgg6vwdyiyyp"))))
|
"1vyk0g0gci4z9psisb8h50zi3j1nwfdg1jw3j76cxv0brln0v3fw"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-pyyaml" ,python-pyyaml)
|
`(("python-clyent" ,python-clyent)
|
||||||
("python-requests" ,python-requests)
|
("python-nbformat" ,python-nbformat)
|
||||||
("python-clyent" ,python-clyent)))
|
("python-pyyaml" ,python-pyyaml)
|
||||||
|
("python-requests" ,python-requests)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytz" ,python-pytz)
|
`(("python-coverage" ,python-coverage)
|
||||||
("python-dateutil" ,python-dateutil)
|
("python-dateutil" ,python-dateutil)
|
||||||
|
("python-freezegun" ,python-freezegun)
|
||||||
("python-mock" ,python-mock)
|
("python-mock" ,python-mock)
|
||||||
("python-coverage" ,python-coverage)
|
("python-pillow" ,python-pillow)
|
||||||
("python-pillow" ,python-pillow)))
|
("python-pytz" ,python-pytz)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -786,9 +789,6 @@ (define-public python-anaconda-client
|
||||||
environments.")
|
environments.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python2-anaconda-client
|
|
||||||
(package-with-python2 python-anaconda-client))
|
|
||||||
|
|
||||||
(define-public python-conda-package-handling
|
(define-public python-conda-package-handling
|
||||||
(package
|
(package
|
||||||
(name "python-conda-package-handling")
|
(name "python-conda-package-handling")
|
||||||
|
|
Loading…
Reference in a new issue