41 lines
739 B
Nix
41 lines
739 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, pythonOlder
|
||
|
, oauthlib
|
||
|
, aiohttp
|
||
|
, setuptools-scm
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "aiohttp-oauthlib";
|
||
|
version = "0.1.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-iTzRpZ3dDC5OmA46VE+XELfE/7nie0zQOLUf4dcDk7c=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
oauthlib
|
||
|
aiohttp
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
setuptools-scm
|
||
|
];
|
||
|
|
||
|
# Package has no tests.
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://git.sr.ht/~whynothugo/aiohttp-oauthlib";
|
||
|
description = "oauthlib integration for aiohttp clients";
|
||
|
license = licenses.isc;
|
||
|
maintainers = with maintainers; [ sumnerevans ];
|
||
|
};
|
||
|
}
|