Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 openssl, 6}: 7 8buildPythonPackage rec { 9 pname = "py-scrypt"; 10 version = "0.8.24"; 11 12 src = fetchPypi { 13 pname = "scrypt"; 14 inherit version; 15 hash = "sha256-mP/eReSpVGHXPe1UunomhXZ5kg1Pj/Mg9vet5uKVMb0="; 16 }; 17 18 buildInputs = [ openssl ]; 19 doCheck = false; 20 21 meta = with lib; { 22 description = "Bindings for scrypt key derivation function library"; 23 homepage = "https://pypi.python.org/pypi/scrypt"; 24 maintainers = [ ]; 25 license = licenses.bsd2; 26 }; 27}