blob: a974c45cae77ac0e1534ab5ab5836b85293085dc (
plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
filetype,
future,
hypothesis,
lib,
pytestCheckHook,
requests,
requests-oauthlib,
responses,
setuptools,
}:
buildPythonPackage rec {
pname = "python-twitter";
version = "3.5";
pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "bear";
repo = "python-twitter";
rev = "v${version}";
sha256 = "08ydmf6dcd416cvw6xq1wxsz6b9s21f2mf9fh3y4qz9swj6n9h8z";
};
patches = [
# Fix tests. Remove with the next release
(fetchpatch {
url = "https://github.com/bear/python-twitter/commit/f7eb83d9dca3ba0ee93e629ba5322732f99a3a30.patch";
sha256 = "008b1bd03wwngs554qb136lsasihql3yi7vlcacmk4s5fmr6klqw";
})
];
dependencies = [
filetype
future
requests
requests-oauthlib
];
nativeCheckInputs = [
pytestCheckHook
responses
hypothesis
];
postPatch = ''
substituteInPlace setup.py \
--replace-fail "'pytest-runner'" ""
'';
disabledTests = [
# AttributeError: 'FileCacheTest' object has no attribute 'assert_'
"test_filecache"
];
pythonImportsCheck = [ "twitter" ];
meta = {
description = "Python wrapper around the Twitter API";
homepage = "https://github.com/bear/python-twitter";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|