From ef24b1fc55d0f995bb6a463905c7bb3c73108ee0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 17 Sep 2022 01:28:55 +0200 Subject: [PATCH] python3Packages.http-sfv: add setuptools to nativeBuildInputs --- pkgs/development/python-modules/http-sfv/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/http-sfv/default.nix b/pkgs/development/python-modules/http-sfv/default.nix index abee83637215..55b318ff40de 100644 --- a/pkgs/development/python-modules/http-sfv/default.nix +++ b/pkgs/development/python-modules/http-sfv/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchFromGitHub , pythonOlder +, setuptools , typing-extensions }: @@ -19,6 +20,10 @@ buildPythonPackage rec { hash = "sha256-zl0Rk4QbzCVmYZ6TnVq+C+oe27Imz5fEQY9Fco5lo5s="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ typing-extensions ];