mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #50538 from Mic92/python.pkgs.internetarchive
python.pkgs.internetarchive: 1.7.2 -> 1.8.1
This commit is contained in:
commit
5ba0796bf2
@ -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…
Reference in New Issue
Block a user