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

18 lines
462 B
Nix
Raw Normal View History

2018-03-19 21:39:56 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "svg.path";
2019-12-19 19:31:23 +00:00
version = "4.0.2";
2018-03-19 21:39:56 +00:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:23 +00:00
sha256 = "4bd627ec6526cd5da14f3c6a51205d930187db2d8992aed626825492c033b195";
2018-03-19 21:39:56 +00:00
};
meta = with stdenv.lib; {
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 ];
};
}