linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / aiohttp-wsgi / default.nix
blob25264a665271f2c8cd5f2b2efc817b6d0a36c4c8
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "aiohttp-wsgi";
11   version = "0.8.2";
12   disabled = pythonOlder "3.6";
14   src = fetchFromGitHub {
15     owner = "etianen";
16     repo = pname;
17     rev = version;
18     sha256 = "0wirn3xqxxgkpy5spicd7p1bkdnsrch61x2kcpdwpixmx961pq7x";
19   };
21   propagatedBuildInputs = [
22     aiohttp
23   ];
25   checkInputs = [
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "aiohttp_wsgi" ];
31   meta = with lib; {
32     description = "WSGI adapter for aiohttp";
33     homepage = "https://github.com/etianen/aiohttp-wsgi";
34     license = with licenses; [ bsd3 ];
35     maintainers = with maintainers; [ fab ];
36   };