about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/py-scrypt/default.nix
blob: a997bc11ef0d288ea388d9266071a0bdc1e3947b (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
26
{ lib
, buildPythonPackage
, fetchPypi
, openssl
}:

buildPythonPackage rec {
  pname = "py-scrypt";
  version = "0.8.24";

  src = fetchPypi {
    pname = "scrypt";
    inherit version;
    hash = "sha256-mP/eReSpVGHXPe1UunomhXZ5kg1Pj/Mg9vet5uKVMb0=";
  };

  buildInputs = [ openssl ];
  doCheck = false;

  meta = with lib; {
    description = "Bindings for scrypt key derivation function library";
    homepage = "https://pypi.python.org/pypi/scrypt";
    maintainers = [];
    license = licenses.bsd2;
  };
}