blob: eb272e06d10c0c52994ccbb365cc7042ed9d900c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
(define-module (gn packages gn-auth)
#:use-module (guix)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:)
;; Packages from guix
#:use-module (gnu packages check)
#:use-module (gnu packages django)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages databases)
;; Packages from guix-bioinformatics
#:use-module (gn packages python-web))
(define-public gn-auth
(package
(name "gn-auth")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/genenetwork/gn-auth.git")
(commit "a183445c6ecf7e99aee82a2d729378b79bed58e7")))
(hash
(content-hash
(base32
"053h4w705v8dai3xj3qhj54d8am39w8x504y4gvbrdyczkl2fxci")))))
(build-system python-build-system)
(arguments
`(#:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-k" "unit_test")))))))
(native-inputs
(list python-mypy
python-pytest
python-pylint
python-hypothesis
python-pytest-mock
python-mypy-extensions))
(propagated-inputs
(list gunicorn
python-flask
python-redis
python-authlib
python-pymonad
yoyo-migrations
python-bcrypt ;; remove after removing all references
python-mysqlclient
python-argon2-cffi
python-email-validator))
(home-page "https://github.com/genenetwork/gn-auth")
(synopsis "Authentication and Authorisation server for GeneNetwork services")
(description "Authentication and Authorisation server for GeneNetwork services.")
(license license:agpl3+)))
|