python311Packages.cryptography-vectors: 41.0.2 -> 41.0.3

+13 -4
+13 -4
pkgs/development/python-modules/cryptography/vectors.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, cryptography, setuptools }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , cryptography 5 + , setuptools 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "cryptography-vectors"; ··· 9 14 src = fetchPypi { 10 15 pname = "cryptography_vectors"; 11 16 inherit version; 12 - hash = "sha256-Ao3/lKhSLKgYsRKV/xLfVfNI8zoZPAWX3f6COeU9FYI="; 17 + hash = "sha256-gN4EUsSzT1b1UY6B69dba5BfVyiq7VIdQuQfTryKQ/s="; 13 18 }; 14 19 15 - nativeBuildInputs = [ setuptools ]; 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 16 23 17 24 # No tests included 18 25 doCheck = false; 19 26 20 - pythonImportsCheck = [ "cryptography_vectors" ]; 27 + pythonImportsCheck = [ 28 + "cryptography_vectors" 29 + ]; 21 30 22 31 meta = with lib; { 23 32 description = "Test vectors for the cryptography package";