blob: 64fe6fa776fec0b5081f49677cdc5e7fbf12db62 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
oauthlib,
aiohttp,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "aiohttp-oauthlib";
version = "0.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-iTzRpZ3dDC5OmA46VE+XELfE/7nie0zQOLUf4dcDk7c=";
};
propagatedBuildInputs = [
oauthlib
aiohttp
];
nativeBuildInputs = [ setuptools-scm ];
# Package has no tests.
doCheck = false;
meta = {
homepage = "https://git.sr.ht/~whynothugo/aiohttp-oauthlib";
description = "oauthlib integration for aiohttp clients";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ sumnerevans ];
};
}
|