aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/janus/default.nix
blob: da0f43811f23a64426697d07fcce2a250daac1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };
}