python3Packages.token-bucket: Disable tests on darwin

This commit is contained in:
Martin Weinelt 2022-11-19 13:59:08 +01:00
parent 6b242972a1
commit 2613b5f867
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pytest-runner
@ -25,6 +26,8 @@ buildPythonPackage rec {
pytestCheckHook
];
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "Token Bucket Implementation for Python Web Apps";
homepage = "https://github.com/falconry/token-bucket";