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

26 lines
548 B
Nix
Raw Normal View History

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