forked from trezor/trezor-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
72 lines (60 loc) · 1.26 KB
/
Pipfile
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
68
69
70
71
72
[[source]]
url = "https://pypi.org/simple"
name = "pypi"
verify_ssl = true
[packages]
# all
trezor = {editable = true,path = "./python"}
scons = "*"
protobuf = "==3.6.1"
pyblake2 = "*"
Pyro4 = "*"
nanopb = "==0.4.1"
## test tools
pytest = "*"
mock = "*"
coverage = "<5" # coverage 5+ uses binary sqlite format
flaky = ">=3.6.1" # https://github.com/box/flaky/issues/156
pytest-ordering = "*"
pytest-random-order = "*"
pytest-timeout = "*"
tox = "*"
dominate = "*"
## test requirements
shamir-mnemonic = "*"
fido2 = "==0.7.3" # https://github.com/solokeys/fido2-tests/issues/27
## typing
mypy = "*"
typing-extensions = ">=3.7.4"
## style
isort = ">=4.3.14"
flake8 = ">=3.7.0"
black = "*"
mako = ">=1.0.7"
munch = ">=2.3.2"
autoflake = "*"
# common
demjson = "*"
graphviz = "*"
## cointool
click = ">=6"
ed25519 = ">=1.4"
requests = ">=2.19"
termcolor = ">=0.1.2"
Pillow = ">=5.2.0"
# crypto
ecdsa = ">=0.13.3"
curve25519-donna = "*"
pyasn1 = "*"
# legacy
setuptools = ">=24.2.0"
typing = "*"
# storage
cryptography = "*"
hypothesis = "==4.38.1" # let's use this version because of the nixos pipenv/pip issue
attrs = "==18.2.0" # let's use this version because of the nixos pipenv/pip issue
inotify = "*"
[dev-packages]
scan-build = "*"
[pipenv]
allow_prereleases = true