From 3538ce088a6f1239040e0ec719ae4c9b060ecb4e Mon Sep 17 00:00:00 2001 From: barinov274 Date: Wed, 27 Apr 2022 22:44:53 +1000 Subject: [PATCH] python39Packages.ufoLib2: add setuptoold-csm in nativeBuildInputs --- pkgs/development/python-modules/ufoLib2/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/ufoLib2/default.nix b/pkgs/development/python-modules/ufoLib2/default.nix index 21894203d1ad..fab42e5169b8 100644 --- a/pkgs/development/python-modules/ufoLib2/default.nix +++ b/pkgs/development/python-modules/ufoLib2/default.nix @@ -5,6 +5,7 @@ , fonttools , pytestCheckHook , fs +, setuptools-scm }: buildPythonPackage rec { @@ -25,6 +26,8 @@ buildPythonPackage rec { fs ]; + nativeBuildInputs = [ setuptools-scm ]; + checkInputs = [ pytestCheckHook ];