ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / webtest-aiohttp / default.nix
blobc1ae249c87ebfe04af2bf1839222127fed3792b9
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pytest-aiohttp
6 , pytestCheckHook
7 , pythonOlder
8 , webtest
9 }:
11 buildPythonPackage rec {
12   pname = "webtest-aiohttp";
13   version = "2.0.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "sloria";
20     repo = pname;
21     rev = version;
22     sha256 = "sha256-UuAz/k/Tnumupv3ybFR7PkYHwG3kH7M5oobZykEP+ao=";
23   };
25   propagatedBuildInputs = [
26     webtest
27   ];
29   checkInputs = [
30     aiohttp
31     pytest-aiohttp
32     pytestCheckHook
33   ];
35   pythonImportsCheck = [
36     "webtest_aiohttp"
37   ];
39   meta = with lib; {
40     description = "Provides integration of WebTest with aiohttp.web applications";
41     homepage = "https://github.com/sloria/webtest-aiohttp";
42     license = licenses.mit;
43     maintainers = with maintainers; [ cript0nauta ];
44   };