pythonPackages.svgwrite: 1.1.6 -> 1.2.1

This commit is contained in:
Mario Rodas 2018-12-04 21:41:08 -05:00
parent 572b514582
commit e8bfc317fd
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -3,23 +3,30 @@
, fetchPypi , fetchPypi
, setuptools , setuptools
, pyparsing , pyparsing
, pytest
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "svgwrite"; pname = "svgwrite";
version = "1.1.6"; version = "1.2.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1f018813072aa4d7e95e58f133acb3f68fa7de0a0d89ec9402cc38406a0ec5b8"; extension = "zip";
sha256 = "72ef66c9fe367989823cb237ab7f012ac809dd3ba76c1b5ebd9aa61580e2e75e";
}; };
buildInputs = [ setuptools ]; buildInputs = [ setuptools ];
propagatedBuildInputs = [ pyparsing ]; propagatedBuildInputs = [ pyparsing ];
checkInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A Python library to create SVG drawings"; description = "A Python library to create SVG drawings";
homepage = https://bitbucket.org/mozman/svgwrite; homepage = https://github.com/mozman/svgwrite;
license = licenses.mit; license = licenses.mit;
}; };