talosctl: 1.9.1 -> 1.9.2 (#374443)
[NixPkgs.git] / pkgs / development / python-modules / asyncclick / default.nix
blob54695ecc0432d7b6c1488cf3af0abb8ae3c701fb
2   lib,
3   anyio,
4   buildPythonPackage,
5   fetchFromGitHub,
6   setuptools-scm,
7   pytestCheckHook,
8   pythonOlder,
9   trio,
12 buildPythonPackage rec {
13   pname = "asyncclick";
14   version = "8.1.7.2";
15   pyproject = true;
17   disabled = pythonOlder "3.9";
19   src = fetchFromGitHub {
20     owner = "python-trio";
21     repo = "asyncclick";
22     tag = version;
23     hash = "sha256-ahzI7yILq1OpZ6IT0qt8vjzi6I6zAoTrULOl8CqRw4A=";
24   };
26   nativeBuildInputs = [ setuptools-scm ];
28   propagatedBuildInputs = [ anyio ];
30   nativeCheckInputs = [
31     pytestCheckHook
32     trio
33   ];
35   pytestFlagsArray = [
36     "-W"
37     "ignore::trio.TrioDeprecationWarning"
38   ];
40   disabledTests = [
41     # AttributeError: 'Context' object has no attribute '_ctx_mgr'
42     "test_context_pushing"
43   ];
45   pythonImportsCheck = [ "asyncclick" ];
47   meta = with lib; {
48     description = "Python composable command line utility";
49     homepage = "https://github.com/python-trio/asyncclick";
50     changelog = "https://github.com/python-trio/asyncclick/blob/${version}/CHANGES.rst";
51     license = with licenses; [ bsd3 ];
52     maintainers = with maintainers; [ fab ];
53   };