mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
22 lines
661 B
Nix
22 lines
661 B
Nix
{ lib, buildPythonPackage, fetchurl, python310Packages }:
|
|
|
|
python310Packages.buildPythonPackage rec {
|
|
pname = "pixel2svg";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://static.florian-berger.de/pixel2svg-${version}.zip";
|
|
sha256 = "sha256-aqcTTmZKcdRdVd8GGz5cuaQ4gjPapVJNtiiZu22TZgQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python310Packages; [ pillow svgwrite ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://florian-berger.de/en/software/pixel2svg/";
|
|
description = "Converts pixel art to SVG - pixel by pixel";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ annaaurora ];
|
|
mainProgram = "pixel2svg.py";
|
|
};
|
|
}
|