diff options
author | BonfaceKilz | 2021-02-16 20:00:02 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-02-16 20:00:02 +0300 |
commit | 9e638622d93cc405ecd14c3a5f4288e08aecdddb (patch) | |
tree | 55c58f5f7260d9f88a7904d42faf2215aa0709a4 | |
parent | 5901528848acbc82ad57bdb6f4c25c51a52ead5c (diff) | |
download | genenetwork3-9e638622d93cc405ecd14c3a5f4288e08aecdddb.tar.gz |
Add python-bcrypt as a dependency
* guix.scm: Add python-bcrypt.
* requirements.txt: Ditto.
-rw-r--r-- | guix.scm | 2 | ||||
-rw-r--r-- | requirements.txt | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -28,6 +28,7 @@ (gnu packages databases) (gnu packages python) (gnu packages python-check) + (gnu packages python-crypto) (gnu packages python-web) (gnu packages python-xyz) ((guix build utils) #:select (with-directory-excursion)) @@ -63,6 +64,7 @@ #:recursive? #t #:select? git-file?)) (propagated-inputs `(("coreutils" ,coreutils) + ("python-bcrypt" ,python-bcrypt) ("python" ,python-wrapper) ("python-flask" ,python-flask) ("python-pylint" python-pylint) diff --git a/requirements.txt b/requirements.txt index c051017..7dc7a01 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,6 @@ astroid==2.4.2 +bcrypt==3.1.7 +cffi==1.14.5 click==7.1.2 Flask==1.1.2 isort==4.3.21 @@ -10,6 +12,7 @@ mccabe==0.6.1 mypy==0.790 mypy-extensions==0.4.3 numpy==1.17.3 +pycparser==2.20 pylint==2.5.3 redis==3.5.3 six==1.15.0 |