nixpkgs/pkgs/development/python-modules/py_scrypt/default.nix

26 lines
520 B
Nix
Raw Normal View History

2018-01-09 15:45:57 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, openssl
}:
buildPythonPackage rec {
pname = "scrypt";
version = "0.8.17";
2018-01-09 15:45:57 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "25b5075f2238be93af1cd574540a5ea01b8547f9b678aa72d22fce22577475ec";
2018-01-09 15:45:57 +00:00
};
buildInputs = [ openssl ];
doCheck = false;
meta = with stdenv.lib; {
description = "Bindings for scrypt key derivation function library";
homepage = "https://pypi.python.org/pypi/scrypt";
maintainers = [];
2018-01-09 15:45:57 +00:00
license = licenses.bsd2;
};
}