Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / aiomodernforms / default.nix
blobdd8cbde722c4a4cf5ebcf4c6cac660d6efa7a802
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , aiohttp
5 , backoff
6 , yarl
7 , aresponses
8 , pytest-asyncio
9 , pytestCheckHook
12 buildPythonPackage rec {
13   pname = "aiomodernforms";
14   version = "0.1.8";
16   src = fetchFromGitHub {
17     owner = "wonderslug";
18     repo = "aiomodernforms";
19     rev = "v${version}";
20     hash = "sha256-Vx51WBjjNPIfLlwMnAuwHnGNljhnjKkU0tWB9M9rjsw=";
21   };
23   propagatedBuildInputs = [
24     aiohttp
25     backoff
26     yarl
27   ];
29   nativeCheckInputs = [
30     aresponses
31     pytest-asyncio
32     pytestCheckHook
33   ];
35   pythonImportsCheck = [ "aiomodernforms" ];
37   meta = with lib; {
38     description = "Asynchronous Python client for Modern Forms fans";
39     homepage = "https://github.com/wonderslug/aiomodernforms";
40     license = licenses.mit;
41     maintainers = with maintainers; [ dotlambda ];
42   };