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: ac15eb7752c0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5ee79ca557b1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 16, 2021

  1. Copy the full SHA
    ac5271a View commit details

Commits on Jan 17, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5ee79ca View commit details
Showing with 8 additions and 3 deletions.
  1. +8 −3 pkgs/development/python-modules/ufoprocessor/default.nix
11 changes: 8 additions & 3 deletions pkgs/development/python-modules/ufoprocessor/default.nix
Original file line number Diff line number Diff line change
@@ -26,9 +26,14 @@ buildPythonPackage rec {
mutatormath
];

# tests require custom commands to run
doCheck = false;
pythonImportsCheck = [ "ufoProcessor" ];
checkPhase = ''
runHook preCheck
for t in Tests/*.py; do
# https://github.com/LettError/ufoProcessor/issues/32
[[ "$(basename "$t")" = "tests_fp.py" ]] || python "$t"
done
runHook postCheck
'';

meta = with lib; {
description = "Read, write and generate UFOs with designspace data";