From a3c60070ad0d66c2b318687b560da319fa57fa43 Mon Sep 17 00:00:00 2001 From: K900 Date: Fri, 30 Sep 2022 11:38:54 +0300 Subject: [PATCH] python3Packages.canonicaljson: add setuptools dependency --- pkgs/development/python-modules/canonicaljson/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/canonicaljson/default.nix b/pkgs/development/python-modules/canonicaljson/default.nix index feee27e852ec..4600e0c1e6b6 100644 --- a/pkgs/development/python-modules/canonicaljson/default.nix +++ b/pkgs/development/python-modules/canonicaljson/default.nix @@ -4,6 +4,7 @@ , frozendict , pytestCheckHook , pythonOlder +, setuptools , simplejson }: @@ -19,6 +20,10 @@ buildPythonPackage rec { hash = "sha256-yll2C8J0qJmg2nWAnWkJrkPlEjOB/W7wQKRNGVLAtEg="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ simplejson ];