about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/svg-path/default.nix
blob: e01909fc93a8bc3b0d2f39492cf6f4fe0e2a2aed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "svg.path";
  version = "4.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7e6847ba690ff620e20f152818d52e1685b993aacbc41b321f8fee3d1cb427db";
  };

  meta = with lib; {
    description = "SVG path objects and parser";
    homepage = "https://github.com/regebro/svg.path";
    license = licenses.mit;
    maintainers = with maintainers; [ goibhniu ];
  };
}