Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 20 lines 627 B view raw
1{ lib, buildPythonPackage, fetchurl, python310Packages }: 2 3python310Packages.buildPythonPackage rec { 4 pname = "pixel2svg"; 5 version = "0.3.0"; 6 7 src = fetchurl { 8 url = "https://static.florian-berger.de/pixel2svg-${version}.zip"; 9 sha256 = "sha256-aqcTTmZKcdRdVd8GGz5cuaQ4gjPapVJNtiiZu22TZgQ="; 10 }; 11 12 propagatedBuildInputs = with python310Packages; [ pillow svgwrite ]; 13 14 meta = with lib; { 15 homepage = "https://florian-berger.de/en/software/pixel2svg/"; 16 description = "Converts pixel art to SVG - pixel by pixel"; 17 license = licenses.gpl3Plus; 18 maintainers = with maintainers; [ annaaurora ]; 19 }; 20}