about summary refs log tree commit diff
path: root/pkgs/development/python-modules/launchpadlib/default.nix
blob: 6c5112312bb3a7ca6bfb3df1a94dbe4ddc2b55fb (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
45
46
47
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, httplib2
, keyring
, lazr-restfulclient
, lazr-uri
, setuptools
, six
, testresources
, wadllib
}:

buildPythonPackage rec {
  pname = "launchpadlib";
  version = "1.10.13";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5804d68ec93247194449d17d187e949086da0a4d044f12155fad269ef8515435";
  };

  propagatedBuildInputs = [
    httplib2
    keyring
    lazr-restfulclient
    lazr-uri
    setuptools
    six
    testresources
    wadllib
  ];

  preCheck = ''
    export HOME=$TMPDIR
  '';

  doCheck = isPy3k;

  meta = with lib; {
    description = "Script Launchpad through its web services interfaces. Officially supported";
    homepage = "https://help.launchpad.net/API/launchpadlib";
    license = licenses.lgpl3;
    maintainers = [ maintainers.marsam ];
  };
}