python3Packages.py3rijndael: init at 0.3.3

This commit is contained in:
Martin Weinelt 2022-04-07 04:58:48 +02:00
parent 3957a12e9d
commit 7e2881905c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
let
pname = "py3rijndael";
version = "0.3.3";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-tmVaPr/zoQVA6u0EnoeI7qOsk9a3GzpqwrACJLvs6ag=";
};
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Rijndael algorithm library";
homepage = "https://github.com/meyt/py3rijndael";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View File

@ -6679,6 +6679,8 @@ in {
py3exiv2 = callPackage ../development/python-modules/py3exiv2 { };
py3rijndael = callPackage ../development/python-modules/py3rijndael { };
py3status = callPackage ../development/python-modules/py3status { };
py3to2 = callPackage ../development/python-modules/3to2 { };