pythonPackages.janus: disabled if python < 3.6

This commit is contained in:
zimbatm 2019-10-01 07:47:54 +00:00
parent dfb5755279
commit 212973a057
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, pytest }:
{ lib, buildPythonPackage, fetchPypi, pytest, pythonOlder }:
buildPythonPackage rec {
pname = "janus";
@ -9,7 +9,9 @@ buildPythonPackage rec {
sha256 = "cfc221683160b91b35bae1917e2957b78dad10a2e634f4f8ed119ed72e2a88ef";
};
checkInputs = [ pytest ];
disabled = pythonOlder "3.6";
checkInputs = [ pytest ];
meta = with lib; {
description = "Mixed sync-async queue";