60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, six
|
|
, tqdm
|
|
, pyyaml
|
|
, docopt
|
|
, requests
|
|
, jsonpatch
|
|
, args
|
|
, schema
|
|
, responses
|
|
, backports_csv
|
|
, isPy3k
|
|
, lib
|
|
, glibcLocales
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "internetarchive";
|
|
version = "2.0.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2ce0ab89fea37e5b2311bc7d163955e84f73f6beeac3942e17e9d51ad7cc9ffa";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
tqdm
|
|
pyyaml
|
|
docopt
|
|
requests
|
|
jsonpatch
|
|
args
|
|
schema
|
|
setuptools
|
|
] ++ lib.optionals (!isPy3k) [ backports_csv ];
|
|
|
|
checkInputs = [ pytest responses glibcLocales ];
|
|
|
|
# tests depend on network
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
LC_ALL=en_US.utf-8 pytest tests
|
|
'';
|
|
|
|
pythonImportsCheck = [ "internetarchive" ];
|
|
|
|
meta = with lib; {
|
|
description = "A Python and Command-Line Interface to Archive.org";
|
|
homepage = "https://github.com/jjjake/internetarchive";
|
|
changelog = "https://github.com/jjjake/internetarchive/raw/v${version}/HISTORY.rst";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|