2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-01-09 15:45:57 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, openssl
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "scrypt";
|
2021-12-07 08:56:19 +00:00
|
|
|
version = "0.8.19";
|
2018-01-09 15:45:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-07 08:56:19 +00:00
|
|
|
sha256 = "ad143035ae0cf5e97c4b399f4e4686adf442c5f0f06f9f198a0cc6c091335fb7";
|
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 01:11:51 +00:00
|
|
|
homepage = "https://pypi.python.org/pypi/scrypt";
|
2020-05-27 14:16:06 +00:00
|
|
|
maintainers = [];
|
2018-01-09 15:45:57 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|