From 32a0abe40cc19a170299f7802f1e4592f37dee50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 15 Sep 2022 22:49:13 +0200 Subject: [PATCH] python310Packages.mistune: add setuptools to nativeBuildInputs --- pkgs/development/python-modules/mistune/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/mistune/default.nix b/pkgs/development/python-modules/mistune/default.nix index 16a5e22ac6a4..883bbb513501 100644 --- a/pkgs/development/python-modules/mistune/default.nix +++ b/pkgs/development/python-modules/mistune/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchPypi , pytestCheckHook +, setuptools }: buildPythonPackage rec { @@ -15,6 +16,10 @@ buildPythonPackage rec { sha256 = "9ee0a66053e2267aba772c71e06891fa8f1af6d4b01d5e84e267b4570d4d9808"; }; + nativeBuildInputs = [ + setuptools + ]; + checkInputs = [ pytestCheckHook ];