about summary refs log tree commit diff
path: root/pkgs/development/python-modules/py3rijndael/default.nix
blob: 5e39b14149b2783b0960c7f11fb4fb934f1f91c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  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=";
  };

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Rijndael algorithm library";
    homepage = "https://github.com/meyt/py3rijndael";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}