evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / asyncstdlib / default.nix
blob31bb266783f47ec0f484478e6423870d8fdc4941
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flit-core,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "asyncstdlib";
12   version = "3.12.5";
13   pyproject = true;
15   disabled = pythonOlder "3.9";
17   src = fetchFromGitHub {
18     owner = "maxfischer2781";
19     repo = "asyncstdlib";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-RQoq+Okzan4/Q51mlL1EPyZuBSr3+xGWEPSAnZYJGyA=";
22   };
24   build-system = [ flit-core ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   pythonImportsCheck = [ "asyncstdlib" ];
30   meta = with lib; {
31     description = "Python library that extends the Python asyncio standard library";
32     homepage = "https://asyncstdlib.readthedocs.io/";
33     changelog = "https://github.com/maxfischer2781/asyncstdlib/releases/tag/v${version}";
34     license = with licenses; [ mit ];
35     maintainers = with maintainers; [ fab ];
36   };