Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
pythonPackages.svgwrite: 1.3.1 -> 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wamserma committed May 27, 2020
1 parent 670237e commit b958b71
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pkgs/development/python-modules/svgwrite/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pythonOlder
, pyparsing
, pytest
}:

buildPythonPackage rec {
pname = "svgwrite";
version = "1.3.1";
version = "1.4";

src = fetchFromGitHub {
owner = "mozman";
repo = "svgwrite";
rev = "v${version}";
sha256 = "14wz0y118a5wwfzin6cirr9254p4y825lnrnackihdbpw22gcw11";
sha256 = "15xjz5b4dw1sg3a5k4wmzky4h5v1n937id8vl6hha1a2xj42z2s5";
};

# svgwrite requires Python 3.6 or newer
disabled = !isPy3k || pythonOlder "3.6";

propagatedBuildInputs = [
pyparsing
];
Expand Down

0 comments on commit b958b71

Please sign in to comment.