Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3ee553df8de2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cff40a91047a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 17, 2020

  1. pythonPackages.psautohint: 2.1.2 -> 2.2.0

    sternenseemann authored and Jonathan Ringer committed Dec 17, 2020
    Copy the full SHA
    cff40a9 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/python-modules/psautohint/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/psautohint/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{ 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";

src = fetchFromGitHub {
owner = "adobe-type-tools";
repo = pname;
rev = "v${version}";
sha256 = "1s2l54gzn11y07zaggprwif7r3ia244qijjhkbvjdx4jsgc5df8n";
sha256 = "0gsgfr190xy2rnjf1gf7688xrh13ihgq10s19s4rv5hp6pmg9iaa";
fetchSubmodules = true; # data dir for tests
};