linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / janus / default.nix
blob14d54ef5a4229f524b896e04be83bc7e88d30876
1 { lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio }:
3 buildPythonPackage rec {
4   pname = "janus";
5   version = "0.6.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "4712e0ef75711fe5947c2db855bc96221a9a03641b52e5ae8e25c2b705dd1d0c";
10   };
12   disabled = pythonOlder "3.6";
14   checkInputs = [ pytest-asyncio pytestCheckHook ];
16   # also fails upstream: https://github.com/aio-libs/janus/pull/258
17   disabledTests = [ "test_format" ];
19   meta = with lib; {
20     description = "Mixed sync-async queue";
21     homepage = "https://github.com/aio-libs/janus";
22     license = licenses.asl20;
23     maintainers = [ maintainers.simonchatts ];
24   };