nixpkgs/pkgs/development/python-modules/internetarchive/default.nix

60 lines
1.0 KiB
Nix
Raw Normal View History

{ buildPythonPackage
, fetchFromGitHub
, pytest
, six
, tqdm
, pyyaml
, docopt
, requests
, jsonpatch
, args
, schema
, responses
, backports_csv
, isPy3k
, lib
, glibcLocales
, setuptools
}:
2017-09-16 23:41:09 +01:00
buildPythonPackage rec {
pname = "internetarchive";
version = "1.9.4";
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}";
sha256 = "10xlblj21hanahsmw6lfggbrbpw08pdmvdgds1p58l8xd4fazli8";
2017-09-16 23:41:09 +01:00
};
2018-11-18 01:22:38 +00:00
propagatedBuildInputs = [
six
tqdm
2018-11-18 01:22:38 +00:00
pyyaml
docopt
requests
jsonpatch
args
schema
setuptools
] ++ lib.optionals (!isPy3k) [ 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 and Command-Line Interface to Archive.org";
homepage = "https://github.com/jjjake/internetarchive";
2017-09-16 23:41:09 +01:00
license = licenses.agpl3;
maintainers = [ maintainers.marsam ];
2017-09-16 23:41:09 +01:00
};
}