diff options
Diffstat (limited to 'util/nix/pyproject.toml')
-rw-r--r-- | util/nix/pyproject.toml | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/util/nix/pyproject.toml b/util/nix/pyproject.toml index a81336189..1ec8aacd4 100644 --- a/util/nix/pyproject.toml +++ b/util/nix/pyproject.toml | |||
@@ -9,23 +9,27 @@ authors = [] | |||
9 | 9 | ||
10 | [tool.poetry.dependencies] | 10 | [tool.poetry.dependencies] |
11 | python = "^3.8" | 11 | python = "^3.8" |
12 | appdirs = "^1.4.4" | 12 | appdirs = "*" |
13 | argcomplete = "^1.12.2" | 13 | argcomplete = "*" |
14 | colorama = "^0.4.4" | 14 | colorama = "*" |
15 | dotty-dict = "^1.3.0" | 15 | hid = "*" |
16 | hjson = "^3.0.2" | 16 | hjson = "*" |
17 | jsonschema = "^3.2.0" | 17 | jsonschema = ">=3" |
18 | milc = "^1.3.0" | 18 | milc = ">=1.4.2" |
19 | Pygments = "^2.8.0" | 19 | Pygments = "*" |
20 | pyusb = "*" | ||
21 | qmk-dotty-dict = "*" | ||
22 | |||
23 | # This dependency is not mentioned in requirements.txt (QMK CLI is not a | ||
24 | # library package that is required by the Python code in qmk_firmware), but is | ||
25 | # required to build a proper nix-shell environment. | ||
20 | qmk = "*" | 26 | qmk = "*" |
21 | 27 | ||
22 | [tool.poetry.dev-dependencies] | 28 | [tool.poetry.dev-dependencies] |
23 | nose2 = "^0.10.0" | 29 | nose2 = "*" |
24 | flake8 = "^3.8.4" | 30 | flake8 = "*" |
25 | hid = "^1.0.4" | 31 | pep8-naming = "*" |
26 | pep8-naming = "^0.11.1" | 32 | yapf = "*" |
27 | pyusb = "^1.1.1" | ||
28 | yapf = "^0.30.0" | ||
29 | 33 | ||
30 | [build-system] | 34 | [build-system] |
31 | requires = ["poetry-core>=1.0.0"] | 35 | requires = ["poetry-core>=1.0.0"] |