python3Packages.schemdraw: fix ModuleNotFoundError: No module named 'setuptools'

This commit is contained in:
Stefan Frijters
2024-01-25 23:16:46 +01:00
parent 7a4a5c709c
commit 0bd988a489
@@ -2,6 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, pyparsing
, matplotlib
, latex2mathml
@@ -25,6 +26,10 @@ buildPythonPackage rec {
hash = "sha256-wa/IeNGZynU/xKwyFwebXcFaruhBFqGWsrZYaIEVa8Q=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pyparsing
];