Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / svgutils / default.nix
blobea2c7c547e437882bf4419b93260563e8fc4a8fd
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
5 , lxml
6 , matplotlib
7 , pytestCheckHook
8 , nose
9 }:
11 buildPythonPackage rec {
12   pname = "svgutils";
13   version = "0.3.4";
14   pyproject = true;
16   src = fetchFromGitHub {
17     owner = "btel";
18     repo = "svg_utils";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-ITvZx+3HMbTyaRmCb7tR0LKqCxGjqDdV9/2taziUD0c=";
21   };
23   nativeBuildInputs = [ setuptools ];
25   propagatedBuildInputs = [
26     lxml
27     matplotlib
28   ];
30   nativeCheckInputs = [ pytestCheckHook nose ];
32   pythonImportsCheck = [ "svgutils" ];
34   meta = with lib; {
35     description = "Python tools to create and manipulate SVG files";
36     homepage = "https://github.com/btel/svg_utils";
37     license = licenses.mit;
38     maintainers = with maintainers; [ bcdarwin ];
39   };