Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage, fetchPypi, lib }: 2 3buildPythonPackage rec { 4 # also bump cryptography 5 pname = "cryptography_vectors"; 6 version = "2.5"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "15qfl3pnw2f11r0z0zhwl56f6pb60ysav8fxmpnz5p80cfwljdik"; 11 }; 12 13 # No tests included 14 doCheck = false; 15 16 meta = with lib; { 17 description = "Test vectors for the cryptography package"; 18 homepage = https://cryptography.io/en/latest/development/test-vectors/; 19 # Source: https://github.com/pyca/cryptography/tree/master/vectors; 20 license = with licenses; [ asl20 bsd3 ]; 21 maintainers = with maintainers; [ primeos ]; 22 }; 23}