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

buildPythonPackage rec {
  pname = "pyscrypt";
  version = "1.6.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1sd5pd5fpcdnpp4h58kdnvkf0s3afh4ssfqky2ap6z0gy6ax3zds";
  };

  checkPhase = ''
    ${python.interpreter} tests/run-tests-hash.py
  '';

  meta = with lib; {
    homepage = "https://github.com/ricmoo/pyscrypt/";
    description = "Pure-Python implementation of Scrypt PBKDF and scrypt file format library";
    license = licenses.mit;
    maintainers = with maintainers; [ valodim ];
  };
}