about summary refs log tree commit diff
path: root/pkgs/development/python-modules/asttokens
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-27 02:25:52 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-09-05 15:00:10 +0200
commitab126c9a62ca414a933ac19e91d27ddd68cedcd4 (patch)
tree1329f921bef2b1517b1e53a81100f561b49d7bba /pkgs/development/python-modules/asttokens
parent26f55ce2b756bfb6a8c3c53bb984e5ff9ea64ee4 (diff)
python3Packages: provide setuptools-scm with toml[i] by default and remove duplicated toml packages
Some packages seem to still require toml despite setuptools-scm having switched to tomli.
If it is missing the version number in dist.into is set to 0.0.0 and silently all version pins break.
Diffstat (limited to 'pkgs/development/python-modules/asttokens')
-rw-r--r--pkgs/development/python-modules/asttokens/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/asttokens/default.nix b/pkgs/development/python-modules/asttokens/default.nix
index bb4cf989cddf8..acd44d55e16fa 100644
--- a/pkgs/development/python-modules/asttokens/default.nix
+++ b/pkgs/development/python-modules/asttokens/default.nix
@@ -1,5 +1,5 @@
 { lib, fetchPypi, fetchpatch, buildPythonPackage,
-  setuptools-scm, toml, six, astroid, pytest
+  setuptools-scm, six, astroid, pytest
 }:
 
 buildPythonPackage rec {
@@ -21,7 +21,7 @@ buildPythonPackage rec {
     })
   ];
 
-  propagatedBuildInputs = [ setuptools-scm toml six astroid ];
+  propagatedBuildInputs = [ setuptools-scm six astroid ];
 
   checkInputs = [ pytest ];