summary refs log tree commit diff
path: root/pkgs/development/python-modules/py_scrypt/default.nix
blob: 056a0299670ddec1cec72883c70ba618cb2121d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, openssl
}:

buildPythonPackage rec {
  pname = "scrypt";
  version = "0.8.13";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1377b1adc98c4152694bf5d7e93b41a9d2e9060af69b747cfad8c93ac426f9ea";
  };

  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;
  };
}