3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/janus/default.nix

32 lines
756 B
Nix
Raw Normal View History

2021-11-29 08:03:31 +00:00
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio
, typing-extensions
}:
2019-09-17 12:02:18 +01:00
buildPythonPackage rec {
pname = "janus";
2021-11-25 22:46:54 +00:00
version = "0.7.0";
2019-09-17 12:02:18 +01:00
src = fetchPypi {
inherit pname version;
2021-11-25 22:46:54 +00:00
sha256 = "f10dcf5776e8d49cc30ec86d5eb7268eeec39abaa24fe0332ee8fb8fa3611845";
2019-09-17 12:02:18 +01:00
};
disabled = pythonOlder "3.6";
2021-11-29 08:03:31 +00:00
propagatedBuildInputs = [
typing-extensions
];
2020-06-19 11:16:50 +01:00
checkInputs = [ pytest-asyncio pytestCheckHook ];
# also fails upstream: https://github.com/aio-libs/janus/pull/258
disabledTests = [ "test_format" ];
2019-09-17 12:02:18 +01:00
meta = with lib; {
description = "Mixed sync-async queue";
homepage = "https://github.com/aio-libs/janus";
license = licenses.asl20;
maintainers = [ maintainers.simonchatts ];
};
}