3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/internetarchive/default.nix

45 lines
990 B
Nix
Raw Normal View History

2018-11-18 01:22:38 +00:00
{ buildPythonPackage, fetchFromGitHub, pytest, six, clint, 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.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}";
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
setuptools
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;
};
}