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

26 lines
547 B
Nix
Raw Normal View History

2018-01-09 15:45:57 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, openssl
}:
buildPythonPackage rec {
pname = "scrypt";
2018-02-17 13:22:01 +00:00
version = "0.8.6";
2018-01-09 15:45:57 +00:00
src = fetchPypi {
inherit pname version;
2018-02-17 13:22:01 +00:00
sha256 = "f8239b2d47fa1d40bc27efd231dc7083695d10c1c2ac51a99380360741e0362d";
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 = with maintainers; [ asymmetric ];
license = licenses.bsd2;
};
}