pixel2svg: don't use python310Packages for dependencies

This commit is contained in:
Wroclaw 2025-04-03 16:54:07 +02:00
parent f8d1ce873a
commit d34252171d

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
];