internetarchive: 1.7.2 -> 1.8.1

wip/yesman
Jörg Thalheim 6 years ago
parent 04a543b3a0
commit 42773b125b
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
  1. 51
      pkgs/development/python-modules/internetarchive/default.nix

@ -1,46 +1,41 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pytest, six, clint, pyyaml, docopt
, requests, jsonpatch, args, schema, responses, backports_csv }:
{ buildPythonPackage, fetchFromGitHub, pytest, six, clint, pyyaml, docopt
, requests, jsonpatch, args, schema, responses, backports_csv, isPy3k
, lib, glibcLocales }:
buildPythonPackage rec {
pname = "internetarchive";
version = "1.7.2";
version = "1.8.1";
# Can't use pypi, data files for tests missing
src = fetchFromGitHub {
owner = "jjjake";
repo = "internetarchive";
rev = "v${version}";
sha256 = "1cijagy22qi8ydrvizqmi1whnc3qr94yk0910lwgpxjywcygggir";
sha256 = "1fdb0kr9hzgyh0l8d02khcjpsgyd63nbablhc49ncdsav3dhhr3f";
};
# It is hardcoded to specific versions, I don't know why.
preConfigure = ''
sed "s/schema>=.*/schema>=0.4.0',/" -i setup.py
sed "/backports.csv/d" -i setup.py
'';
#phases = [ "unpackPhase" "configurePhase" "installPhase" "fixupPhase" "installCheckPhase" ];
buildInputs = [ pytest responses ];
propagatedBuildInputs = [
six
clint
pyyaml
docopt
requests
jsonpatch
args
schema
backports_csv
];
propagatedBuildInputs = [
six
clint
pyyaml
docopt
requests
jsonpatch
args
schema
] ++ lib.optional (!isPy3k) backports_csv;
# Tests disabled because ia binary doesn't exist when tests run
doCheck = false;
checkInputs = [ pytest responses glibcLocales ];
checkPhase = "pytest tests";
# tests depend on network
doCheck = false;
checkPhase = ''
LC_ALL=en_US.utf-8 pytest tests
'';
meta = with stdenv.lib; {
description = "A python wrapper for the various Internet Archive APIs";
meta = with lib; {
description = "A python wrapper for the various Internet Archive APIs";
homepage = https://github.com/jjjake/internetarchive;
license = licenses.agpl3;
};

Loading…
Cancel
Save