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
48
49
50
51
52
53
54
55
|
{
lib,
buildPythonPackage,
isPy27,
fetchPypi,
distro,
httplib2,
oauthlib,
setuptools,
six,
wadllib,
fixtures,
lazr-uri,
pytestCheckHook,
wsgi-intercept,
}:
buildPythonPackage rec {
pname = "lazr.restfulclient";
version = "0.14.6";
disabled = isPy27; # namespace is broken for python2
src = fetchPypi {
inherit pname version;
hash = "sha256-Q/EqHTlIRjsUYgOMR7Qp3LXkLgun8uFlEbArpdKt/9s=";
};
propagatedBuildInputs = [
distro
httplib2
oauthlib
setuptools
six
wadllib
];
# E ModuleNotFoundError: No module named 'lazr.uri'
doCheck = false;
nativeCheckInputs = [
fixtures
lazr-uri
pytestCheckHook
wsgi-intercept
];
pythonImportsCheck = [ "lazr.restfulclient" ];
meta = with lib; {
description = "Programmable client library that takes advantage of the commonalities among";
homepage = "https://launchpad.net/lazr.restfulclient";
license = licenses.lgpl3;
maintainers = [ ];
};
}
|