biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / py3rijndael / default.nix
blob5e39b14149b2783b0960c7f11fb4fb934f1f91c0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6 }:
8 let
9   pname = "py3rijndael";
10   version = "0.3.3";
12 buildPythonPackage {
13   inherit pname version;
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-tmVaPr/zoQVA6u0EnoeI7qOsk9a3GzpqwrACJLvs6ag=";
19   };
21   nativeCheckInputs = [ pytestCheckHook ];
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   };