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

26 lines
550 B
Nix
Raw Normal View History

2018-01-09 15:45:57 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, openssl
}:
buildPythonPackage rec {
pname = "scrypt";
2019-02-14 07:37:25 +00:00
version = "0.8.13";
2018-01-09 15:45:57 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:25 +00:00
sha256 = "1377b1adc98c4152694bf5d7e93b41a9d2e9060af69b747cfad8c93ac426f9ea";
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";
2018-01-09 15:45:57 +00:00
maintainers = with maintainers; [ asymmetric ];
license = licenses.bsd2;
};
}