Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / aiomodernforms / default.nix
blob98133f8b894f290a0339bb7b63d99e63949afb53
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";
15   format = "setuptools";
17   src = fetchFromGitHub {
18     owner = "wonderslug";
19     repo = "aiomodernforms";
20     rev = "v${version}";
21     hash = "sha256-Vx51WBjjNPIfLlwMnAuwHnGNljhnjKkU0tWB9M9rjsw=";
22   };
24   propagatedBuildInputs = [
25     aiohttp
26     backoff
27     yarl
28   ];
30   nativeCheckInputs = [
31     aresponses
32     pytest-asyncio
33     pytestCheckHook
34   ];
36   pythonImportsCheck = [ "aiomodernforms" ];
38   meta = with lib; {
39     description = "Asynchronous Python client for Modern Forms fans";
40     homepage = "https://github.com/wonderslug/aiomodernforms";
41     license = licenses.mit;
42     maintainers = with maintainers; [ dotlambda ];
43   };