depot/third_party/nixpkgs/pkgs/development/python-modules/janus/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
525 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest, pythonOlder }:
buildPythonPackage rec {
pname = "janus";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "cfc221683160b91b35bae1917e2957b78dad10a2e634f4f8ed119ed72e2a88ef";
};
disabled = pythonOlder "3.6";
checkInputs = [ pytest ];
meta = with lib; {
description = "Mixed sync-async queue";
homepage = "https://github.com/aio-libs/janus";
license = licenses.asl20;
maintainers = [ maintainers.simonchatts ];
};
}