-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3Packages.svglib: init at 1.0.0
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters