pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / aiohttp-oauthlib / default.nix
blob31972760c132dd01095e5ea1ba683c95247981fd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   oauthlib,
7   aiohttp,
8   setuptools-scm,
9 }:
11 buildPythonPackage rec {
12   pname = "aiohttp-oauthlib";
13   version = "0.1.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-iTzRpZ3dDC5OmA46VE+XELfE/7nie0zQOLUf4dcDk7c=";
21   };
23   propagatedBuildInputs = [
24     oauthlib
25     aiohttp
26   ];
28   nativeBuildInputs = [ setuptools-scm ];
30   # Package has no tests.
31   doCheck = false;
33   meta = with lib; {
34     homepage = "https://git.sr.ht/~whynothugo/aiohttp-oauthlib";
35     description = "oauthlib integration for aiohttp clients";
36     license = licenses.isc;
37     maintainers = with maintainers; [ sumnerevans ];
38   };