mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-python3-saml.
* gnu/packages/python-web.scm (python-python3-saml): New variable. Change-Id: I2609fcea5f55372670629fd1ce5641319489feea
This commit is contained in:
parent
53b438d37e
commit
b396f3078b
1 changed files with 41 additions and 0 deletions
|
@ -1277,6 +1277,47 @@ Model} (SAM) templates into AWS CloudFormation templates.")
|
||||||
emit information from within their applications to the AWS X-Ray service.")
|
emit information from within their applications to the AWS X-Ray service.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-python3-saml
|
||||||
|
(package
|
||||||
|
(name "python-python3-saml")
|
||||||
|
(version "1.16.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/SAML-Toolkits/python3-saml")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1isisymhk8zblj5942jfl0zq392q5fpjikx52nywvzb0m2dcc81b"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; 214 tests pass, 50 fail; many fail because of required Internet
|
||||||
|
;; access or because of assumptions about the location of test files.
|
||||||
|
#:tests? #false
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; FIXME: This should be fixed in python-xmlsec
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(setenv "LD_LIBRARY_PATH"
|
||||||
|
(dirname (search-input-file inputs "lib/libxmlsec1-openssl.so.1.2.37"))))))))
|
||||||
|
(propagated-inputs (list python-isodate python-lxml python-xmlsec))
|
||||||
|
(native-inputs (list python-coverage
|
||||||
|
python-flake8
|
||||||
|
python-freezegun
|
||||||
|
python-poetry-core
|
||||||
|
python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(home-page "https://github.com/SAML-Toolkits/python3-saml")
|
||||||
|
(synopsis "Saml Python toolkit")
|
||||||
|
(description
|
||||||
|
"The SAML Python Toolkit lets you add SAML support to your Python
|
||||||
|
software.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-ovh
|
(define-public python-ovh
|
||||||
(package
|
(package
|
||||||
(name "python-ovh")
|
(name "python-ovh")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue