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