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