Skip to content

Commit

Permalink
python3Packages.svglib: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
trepetti authored and Jon committed Aug 17, 2020
1 parent 41edd65 commit 1b9acad
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pkgs/development/python-modules/svglib/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, cssselect2
, lxml
, pillow
, pytest
, reportlab
, tinycss2
}:

buildPythonPackage rec {
pname = "svglib";
version = "1.0.0";

src = fetchPypi {
inherit pname version;
sha256 = "b17d4a6352f6c25ca3718d2b66a2f1ecfcdf558b1f6646c37f5c191b655979f1";
};

disabled = !isPy3k;

propagatedBuildInputs = [
cssselect2
lxml
pillow
reportlab
tinycss2
];

checkInputs = [
pytest
];

# Ignore tests that require network access (TestWikipediaFlags and TestW3CSVG), and tests that
# require files missing in the 1.0.0 PyPI release (TestOtherFiles).
checkPhase = ''
py.test svglib tests -k 'not TestWikipediaFlags and not TestW3CSVG and not TestOtherFiles'
'';

meta = with lib; {
homepage = "https://github.com/deeplook/svglib";
description = "A pure-Python library for reading and converting SVG";
license = licenses.lgpl3;
maintainers = with maintainers; [ trepetti ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6550,6 +6550,8 @@ in {

stevedore = callPackage ../development/python-modules/stevedore {};

svglib = callPackage ../development/python-modules/svglib { };

text-unidecode = callPackage ../development/python-modules/text-unidecode { };

Theano = callPackage ../development/python-modules/Theano rec {
Expand Down

0 comments on commit 1b9acad

Please sign in to comment.