me
/
guix
Archived
1
0
Fork 0

gnu: python-boto3: Update to 1.18.64.

* gnu/packages/python-xyz.scm (python-boto3): Update to 1.18.64.
[arguments]: Remove trailing #t.
[native-inputs]: Add python-pytest.
master
Ricardo Wurmus 2021-10-19 13:22:52 +00:00
parent fcd17fdeac
commit d5f89c0b93
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 5 deletions

View File

@ -13495,7 +13495,7 @@ interface to the Amazon Web Services (AWS) API.")
(define-public python-boto3 (define-public python-boto3
(package (package
(name "python-boto3") (name "python-boto3")
(version "1.16.22") (version "1.18.64")
(home-page "https://github.com/boto/boto3") (home-page "https://github.com/boto/boto3")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
@ -13503,19 +13503,19 @@ interface to the Amazon Web Services (AWS) API.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0h20hgl4yfl58g75qhb6ibrdmzn47md3srgar7hask14cjmfhfy3")))) "02hy80xfyxln5yr43cbrmq3kpkdijv8v228alz1x92y4gghnb8cj"))))
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'delete-network-tests (add-after 'unpack 'delete-network-tests
;; Deleting integration tests because they are trying to connect to AWS. ;; Deleting integration tests because they are trying to connect to AWS.
(lambda _ (lambda _
(delete-file-recursively "tests/integration") (delete-file-recursively "tests/integration"))))))
#t)))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (native-inputs
`(("python-nose" ,python-nose) `(("python-nose" ,python-nose)
("python-mock" ,python-mock))) ("python-mock" ,python-mock)
("python-pytest" ,python-pytest)))
(propagated-inputs (propagated-inputs
`(("python-botocore" ,python-botocore) `(("python-botocore" ,python-botocore)
("python-jmespath" ,python-jmespath) ("python-jmespath" ,python-jmespath)