nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.base58: avoid dependency on pytest-benchmark

+6 -4
+6 -4
pkgs/development/python-modules/base58/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , py 5 4 , pyhamcrest 6 - , pytest-benchmark 7 5 , pytestCheckHook 8 6 , pythonOlder 9 7 }: ··· 18 20 }; 19 21 20 22 nativeCheckInputs = [ 21 - py 22 23 pyhamcrest 23 - pytest-benchmark 24 24 pytestCheckHook 25 + ]; 26 + 27 + disabledTests = [ 28 + # avoid dependency on pytest-benchmark 29 + "test_decode_random" 30 + "test_encode_random" 25 31 ]; 26 32 27 33 pythonImportsCheck = [ "base58" ];