Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 23 lines 501 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pycryptodomex"; 8 version = "3.10.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-VBzT4+JS+xmntI9CC3mLU0gzArf+TZlUyUdgXQomPWI="; 13 }; 14 15 pythonImportsCheck = [ "Cryptodome" ]; 16 17 meta = with lib; { 18 description = "A self-contained cryptographic library for Python"; 19 homepage = "https://www.pycryptodome.org"; 20 license = licenses.bsd2; 21 maintainers = with maintainers; [ fab ]; 22 }; 23}