Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 17 lines 416 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pycryptodomex"; 5 version = "3.9.4"; 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 = "22d970cee5c096b9123415e183ae03702b2cd4d3ba3f0ced25c4e1aba3967167"; 16 }; 17}