Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pycryptodomex"; 5 version = "3.7.3"; 6 7 meta = { 8 description = "A self-contained cryptographic library for Python"; 9 homepage = https://www.pycryptodome.org; 10 license = lib.licenses.bsd2; 11 }; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "b70fe991564e178af02ccf89435a8f9e8d052707a7c4b95bf6027cb785da3175"; 16 }; 17}