aboutsummaryrefslogtreecommitdiff
path: root/util/nix/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'util/nix/pyproject.toml')
-rw-r--r--util/nix/pyproject.toml32
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]
11python = "^3.8" 11python = "^3.8"
12appdirs = "^1.4.4" 12appdirs = "*"
13argcomplete = "^1.12.2" 13argcomplete = "*"
14colorama = "^0.4.4" 14colorama = "*"
15dotty-dict = "^1.3.0" 15hid = "*"
16hjson = "^3.0.2" 16hjson = "*"
17jsonschema = "^3.2.0" 17jsonschema = ">=3"
18milc = "^1.3.0" 18milc = ">=1.4.2"
19Pygments = "^2.8.0" 19Pygments = "*"
20pyusb = "*"
21qmk-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.
20qmk = "*" 26qmk = "*"
21 27
22[tool.poetry.dev-dependencies] 28[tool.poetry.dev-dependencies]
23nose2 = "^0.10.0" 29nose2 = "*"
24flake8 = "^3.8.4" 30flake8 = "*"
25hid = "^1.0.4" 31pep8-naming = "*"
26pep8-naming = "^0.11.1" 32yapf = "*"
27pyusb = "^1.1.1"
28yapf = "^0.30.0"
29 33
30[build-system] 34[build-system]
31requires = ["poetry-core>=1.0.0"] 35requires = ["poetry-core>=1.0.0"]