2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-01-09 15:45:57 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, openssl
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "scrypt";
|
2020-10-03 10:54:26 +01:00
|
|
|
version = "0.8.17";
|
2018-01-09 15:45:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-03 10:54:26 +01:00
|
|
|
sha256 = "25b5075f2238be93af1cd574540a5ea01b8547f9b678aa72d22fce22577475ec";
|
2018-01-09 15:45:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-09 15:45:57 +00:00
|
|
|
description = "Bindings for scrypt key derivation function library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/scrypt";
|
2020-05-27 15:16:06 +01:00
|
|
|
maintainers = [];
|
2018-01-09 15:45:57 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|