summary refs log tree commit diff
path: root/pkgs/development/python-modules/internetarchive/default.nix
blob: 6b393aea1e794f26cac11dab11f3416128179030 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ buildPythonPackage, fetchFromGitHub, pytest, six, clint, pyyaml, docopt
, requests, jsonpatch, args, schema, responses, backports_csv, isPy3k
, lib, glibcLocales, setuptools }:

buildPythonPackage rec {
  pname = "internetarchive";
  version = "1.9.0";

  # Can't use pypi, data files for tests missing
  src = fetchFromGitHub {
    owner = "jjjake";
    repo = "internetarchive";
    rev = "v${version}";
    sha256 = "1h344c04ipzld4s7xk8d84f80samjjlgzvv3y8zsv0n1c895gymb";
  };

  propagatedBuildInputs = [
    six
    clint
    pyyaml
    docopt
    requests
    jsonpatch
    args
    schema
    setuptools
    backports_csv
  ];

  checkInputs = [ pytest responses glibcLocales ];

  # tests depend on network
  doCheck = false;

  checkPhase = ''
    LC_ALL=en_US.utf-8 pytest tests
  '';

  meta = with lib; {
    description = "A python wrapper for the various Internet Archive APIs";
    homepage = https://github.com/jjjake/internetarchive;
    license = licenses.agpl3;
  };
}