Merge pull request #89009 from wamserma/python-svgwrite-1.4.0

pythonPackages.svgwrite: 1.3.1 -> 1.4
This commit is contained in:
Mario Rodas 2020-05-27 06:55:19 -05:00 committed by GitHub
commit 7978a7e90b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,24 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pyparsing , isPy3k
, pythonOlder
, pytest , pytest
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "svgwrite"; pname = "svgwrite";
version = "1.3.1"; version = "1.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mozman"; owner = "mozman";
repo = "svgwrite"; repo = "svgwrite";
rev = "v${version}"; rev = "v${version}";
sha256 = "14wz0y118a5wwfzin6cirr9254p4y825lnrnackihdbpw22gcw11"; sha256 = "15xjz5b4dw1sg3a5k4wmzky4h5v1n937id8vl6hha1a2xj42z2s5";
}; };
propagatedBuildInputs = [ # svgwrite requires Python 3.6 or newer
pyparsing disabled = pythonOlder "3.6";
];
checkInputs = [ checkInputs = [
pytest pytest