pixel2svg: don't use python310Packages for dependencies

This commit is contained in:
Wroclaw
2025-04-03 23:18:32 +02:00
parent f8d1ce873a
commit d34252171d
+4 -3
View File
@@ -2,10 +2,11 @@
lib,
buildPythonPackage,
fetchurl,
python310Packages,
pillow,
svgwrite,
}:
python310Packages.buildPythonPackage rec {
buildPythonPackage rec {
pname = "pixel2svg";
version = "0.3.0";
@@ -14,7 +15,7 @@ python310Packages.buildPythonPackage rec {
sha256 = "sha256-aqcTTmZKcdRdVd8GGz5cuaQ4gjPapVJNtiiZu22TZgQ=";
};
propagatedBuildInputs = with python310Packages; [
propagatedBuildInputs = [
pillow
svgwrite
];