Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 17 lines 407 B view raw
1{ stdenv, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 version = "3.9.4"; 5 pname = "pycryptodome"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "a168e73879619b467072509a223282a02c8047d932a48b74fbd498f27224aa04"; 10 }; 11 12 meta = { 13 homepage = https://www.pycryptodome.org/; 14 description = "Python Cryptography Toolkit"; 15 platforms = stdenv.lib.platforms.unix; 16 }; 17}