summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-16 14:16:34 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-12-16 19:27:06 -0800
commitcff40a91047a881f33dc0808e2c5875e2fcf76b5 (patch)
treefae6e4980f6ec7f429a903c254fcd1fac433c3a2 /pkgs
parent3ee553df8de251b324519be6ee4c2f22dd6ac386 (diff)
downloadnixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.tar
nixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.tar.gz
nixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.tar.bz2
nixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.tar.lz
nixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.tar.xz
nixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.tar.zst
nixpkgs-cff40a91047a881f33dc0808e2c5875e2fcf76b5.zip
pythonPackages.psautohint: 2.1.2 -> 2.2.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/psautohint/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/psautohint/default.nix b/pkgs/development/python-modules/psautohint/default.nix
index 61828ddff00..68d15133670 100644
--- a/pkgs/development/python-modules/psautohint/default.nix
+++ b/pkgs/development/python-modules/psautohint/default.nix
@@ -1,12 +1,13 @@
 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder
-, fonttools, lxml, fs
+, fonttools
+, lxml, fs # for fonttools extras
 , setuptools_scm
 , pytestCheckHook, pytest_5, pytestcov, pytest_xdist
 }:
 
 buildPythonPackage rec {
   pname = "psautohint";
-  version = "2.1.2";
+  version = "2.2.0";
 
   disabled = pythonOlder "3.6";
 
@@ -14,7 +15,7 @@ buildPythonPackage rec {
     owner = "adobe-type-tools";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1s2l54gzn11y07zaggprwif7r3ia244qijjhkbvjdx4jsgc5df8n";
+    sha256 = "0gsgfr190xy2rnjf1gf7688xrh13ihgq10s19s4rv5hp6pmg9iaa";
     fetchSubmodules = true; # data dir for tests
   };