1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytestCheckHook,
6}:
7
8let
9 pname = "py3rijndael";
10 version = "0.3.3";
11in
12buildPythonPackage {
13 inherit pname version;
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-tmVaPr/zoQVA6u0EnoeI7qOsk9a3GzpqwrACJLvs6ag=";
19 };
20
21 nativeCheckInputs = [ pytestCheckHook ];
22
23 meta = with lib; {
24 description = "Rijndael algorithm library";
25 homepage = "https://github.com/meyt/py3rijndael";
26 license = licenses.mit;
27 maintainers = with maintainers; [ hexa ];
28 };
29}