nixpkgs/pkgs/development/python-modules/svg-path/default.nix

18 lines
450 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2018-03-19 21:39:56 +00:00
buildPythonPackage rec {
pname = "svg.path";
2021-03-24 09:28:30 +00:00
version = "4.1";
2018-03-19 21:39:56 +00:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:30 +00:00
sha256 = "7e6847ba690ff620e20f152818d52e1685b993aacbc41b321f8fee3d1cb427db";
2018-03-19 21:39:56 +00:00
};
meta = with lib; {
2018-03-19 21:39:56 +00:00
description = "SVG path objects and parser";
homepage = "https://github.com/regebro/svg.path";
2018-03-19 21:39:56 +00:00
license = licenses.mit;
maintainers = with maintainers; [ goibhniu ];
};
}