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.
This commit is contained in:
Sandro Jäckel
2021-08-27 02:25:52 +02:00
committed by Martin Weinelt
parent 26f55ce2b7
commit ab126c9a62
11 changed files with 20 additions and 24 deletions

View File

@@ -3,7 +3,6 @@
, fetchPypi
, isPy27
, setuptools-scm
, toml
, pytestCheckHook
}:
@@ -17,7 +16,7 @@ buildPythonPackage rec {
sha256 = "41a23f6788962e9775e40e2ecfb1d6455d02de315022afeedd3c5dc070019d73";
};
nativeBuildInputs = [ setuptools-scm toml ];
nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytestCheckHook ];