2018-11-18 01:22:38 +00:00
|
|
|
{ buildPythonPackage, fetchFromGitHub, pytest, six, clint, pyyaml, docopt
|
|
|
|
, requests, jsonpatch, args, schema, responses, backports_csv, isPy3k
|
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 <module>
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 <module>
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 <module>
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`.
2019-12-11 09:21:41 +00:00
|
|
|
, lib, glibcLocales, setuptools }:
|
2017-09-16 23:41:09 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "internetarchive";
|
2019-12-24 10:24:55 +00:00
|
|
|
version = "1.9.0";
|
2017-09-16 23:41:09 +01:00
|
|
|
|
|
|
|
# Can't use pypi, data files for tests missing
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jjjake";
|
|
|
|
repo = "internetarchive";
|
|
|
|
rev = "v${version}";
|
2019-12-24 10:24:55 +00:00
|
|
|
sha256 = "1h344c04ipzld4s7xk8d84f80samjjlgzvv3y8zsv0n1c895gymb";
|
2017-09-16 23:41:09 +01:00
|
|
|
};
|
|
|
|
|
2018-11-18 01:22:38 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
six
|
|
|
|
clint
|
|
|
|
pyyaml
|
|
|
|
docopt
|
|
|
|
requests
|
|
|
|
jsonpatch
|
|
|
|
args
|
|
|
|
schema
|
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 <module>
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 <module>
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 <module>
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`.
2019-12-11 09:21:41 +00:00
|
|
|
setuptools
|
2019-12-24 23:19:42 +00:00
|
|
|
backports_csv
|
|
|
|
];
|
2017-09-16 23:41:09 +01:00
|
|
|
|
2018-11-18 01:22:38 +00:00
|
|
|
checkInputs = [ pytest responses glibcLocales ];
|
2017-09-16 23:41:09 +01:00
|
|
|
|
2018-11-18 01:22:38 +00:00
|
|
|
# tests depend on network
|
|
|
|
doCheck = false;
|
2017-09-16 23:41:09 +01:00
|
|
|
|
2018-11-18 01:22:38 +00:00
|
|
|
checkPhase = ''
|
|
|
|
LC_ALL=en_US.utf-8 pytest tests
|
|
|
|
'';
|
2017-09-16 23:41:09 +01:00
|
|
|
|
2018-11-18 01:22:38 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A python wrapper for the various Internet Archive APIs";
|
2017-09-16 23:41:09 +01:00
|
|
|
homepage = https://github.com/jjjake/internetarchive;
|
|
|
|
license = licenses.agpl3;
|
|
|
|
};
|
|
|
|
}
|