pythonPackages.pyscrypt: init at 1.6.2
This commit is contained in:
parent
b0d7d8527b
commit
e9578b9736
22
pkgs/development/python-modules/pyscrypt/default.nix
Normal file
22
pkgs/development/python-modules/pyscrypt/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1203,6 +1203,8 @@ in {
|
|||||||
|
|
||||||
simplefix = callPackage ../development/python-modules/simplefix { };
|
simplefix = callPackage ../development/python-modules/simplefix { };
|
||||||
|
|
||||||
|
pyscrypt = callPackage ../development/python-modules/pyscrypt { };
|
||||||
|
|
||||||
pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {
|
pyside2-tools = toPythonModule (callPackage ../development/python-modules/pyside2-tools {
|
||||||
inherit (pkgs) cmake qt5;
|
inherit (pkgs) cmake qt5;
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user