mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
6d945d2803
Diff: https://github.com/xyz2tex/svg2tikz/compare/refs/tags/vunstable-2021-01-12...v1.2.0 Changelog: https://github.com/xyz2tex/svg2tikz/blob/refs/tags/v1.2.0/README.md#changes-bug-fixes-and-known-problems-from-the-original
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, inkex
|
|
, lxml
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "svg2tikz";
|
|
version = "1.2.0";
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xyz2tex";
|
|
repo = "svg2tikz";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-oFcKRcXef1Uz0qFi6Gga/D4u8zW0RjXAnHDlhRr33Ts=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "+dairiki.1" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
inkex
|
|
lxml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "svg2tikz" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/xyz2tex/svg2tikz/blob/${src.rev}/README.md#changes-bug-fixes-and-known-problems-from-the-original";
|
|
homepage = "https://github.com/xyz2tex/svg2tikz";
|
|
description = "Set of tools for converting SVG graphics to TikZ/PGF code";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ dotlambda gal_bolle ];
|
|
};
|
|
}
|