silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / asyncstdlib / default.nix
blob398496d6951875e3ef15137aed784e55f2912cd5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flit-core,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "asyncstdlib";
12   version = "3.13.0";
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-0VEJ26MP6gIgPvjan7LgCEtSLpg4wXhmFNPGZGntPD8=";
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   };