lol

python3Packages.circuitbreaker: 1.4.0 -> 2.0.0

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