lol

python3Packages.circuitbreaker: 1.4.0 -> 2.0.0

+6 -4
+6 -4
pkgs/development/python-modules/circuitbreaker/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , mock 5 , pytestCheckHook 6 , pythonOlder 7 }: 8 9 buildPythonPackage rec { 10 pname = "circuitbreaker"; 11 - version = "1.4.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.8"; ··· 17 owner = "fabfuel"; 18 repo = pname; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-l0ASt9CQmgJmWpRrghElbff/gaNOmxNh+Wj0C0p4jE0="; 21 }; 22 23 nativeCheckInputs = [ 24 - mock 25 pytestCheckHook 26 ]; 27 28 pythonImportsCheck = [
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pytestCheckHook 5 + , pytest-asyncio 6 + , pytest-mock 7 , pythonOlder 8 }: 9 10 buildPythonPackage rec { 11 pname = "circuitbreaker"; 12 + version = "2.0.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "fabfuel"; 19 repo = pname; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-jaDCMGCZZu3STluYeHDNgdEPf2DNq7bXJ0LPV3JZdk0="; 22 }; 23 24 nativeCheckInputs = [ 25 pytestCheckHook 26 + pytest-asyncio 27 + pytest-mock 28 ]; 29 30 pythonImportsCheck = [