nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 28 lines 590 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pycryptodome-test-vectors 5}: 6 7buildPythonPackage rec { 8 pname = "pycryptodome"; 9 version = "3.14.1"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-4E5Ap/jBZpGVU2o3l53YfaLDLb3HPW/jXwB3sMF8gDs="; 15 }; 16 17 pythonImportsCheck = [ 18 "Crypto" 19 ]; 20 21 meta = with lib; { 22 description = "Python Cryptography Toolkit"; 23 homepage = "https://www.pycryptodome.org/"; 24 license = with licenses; [ bsd2 /* and */ asl20 ]; 25 maintainers = with maintainers; [ fab ]; 26 platforms = platforms.unix; 27 }; 28}