mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pythonPackages.svgwrite: 1.1.6 -> 1.2.1
This commit is contained in:
parent
572b514582
commit
e8bfc317fd
@ -3,23 +3,30 @@
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, pyparsing
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "svgwrite";
|
||||
version = "1.1.6";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1f018813072aa4d7e95e58f133acb3f68fa7de0a0d89ec9402cc38406a0ec5b8";
|
||||
extension = "zip";
|
||||
sha256 = "72ef66c9fe367989823cb237ab7f012ac809dd3ba76c1b5ebd9aa61580e2e75e";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools ];
|
||||
propagatedBuildInputs = [ pyparsing ];
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Python library to create SVG drawings";
|
||||
homepage = https://bitbucket.org/mozman/svgwrite;
|
||||
homepage = https://github.com/mozman/svgwrite;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user