From 2cbb2590aa0954a07cb4ed1825024e9863dc03c1 Mon Sep 17 00:00:00 2001 From: Matthew Harm Bekkema Date: Wed, 11 Dec 2019 20:21:41 +1100 Subject: [PATCH] internetarchive: Provide setuptools at runtime Since commit f7e28bf5d8181926e600a222cb70180519d09726 ("Split buildPythonPackage into setup hooks"), the `ia` command provided by this package has crashed with the error: Traceback (most recent call last): File "/nix/store/7n1jf081h0qnj82m2s69mxzj02zf746f-python3.7-internetarchive-1.8.1/bin/.ia-wrapped", line 7, in from internetarchive.cli.ia import main File "/nix/store/7n1jf081h0qnj82m2s69mxzj02zf746f-python3.7-internetarchive-1.8.1/lib/python3.7/site-packages/internetarchive/cli/__init__.py", line 27, in from internetarchive.cli import ia, ia_configure, ia_delete, ia_download, ia_list, \ File "/nix/store/7n1jf081h0qnj82m2s69mxzj02zf746f-python3.7-internetarchive-1.8.1/lib/python3.7/site-packages/internetarchive/cli/ia.py", line 60, in from pkg_resources import iter_entry_points, DistributionNotFound ModuleNotFoundError: No module named 'pkg_resources' This commit fixes that by adding `setuptools` (which contains the 'pkg_resources' module) to `propagatedBuildInputs`. --- pkgs/development/python-modules/internetarchive/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/internetarchive/default.nix b/pkgs/development/python-modules/internetarchive/default.nix index dda0680f537..739a82aecc5 100644 --- a/pkgs/development/python-modules/internetarchive/default.nix +++ b/pkgs/development/python-modules/internetarchive/default.nix @@ -1,6 +1,6 @@ { buildPythonPackage, fetchFromGitHub, pytest, six, clint, pyyaml, docopt , requests, jsonpatch, args, schema, responses, backports_csv, isPy3k -, lib, glibcLocales }: +, lib, glibcLocales, setuptools }: buildPythonPackage rec { pname = "internetarchive"; @@ -23,6 +23,7 @@ buildPythonPackage rec { jsonpatch args schema + setuptools ] ++ lib.optional (!isPy3k) backports_csv; checkInputs = [ pytest responses glibcLocales ];