pythonPackages.pyscrypt: init at 1.6.2

This commit is contained in:
Vincent Breitmoser 2020-01-03 16:11:48 +01:00 committed by Jon
parent b0d7d8527b
commit e9578b9736
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -1203,6 +1203,8 @@ in {
simplefix = callPackage ../development/python-modules/simplefix { };
pyscrypt = callPackage ../development/python-modules/pyscrypt { };
pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {
inherit (pkgs) cmake qt5;
});