nixpkgs/pkgs/development/python-modules/py3rijndael/default.nix
2022-04-12 04:04:07 +02:00

31 lines
553 B
Nix

{ 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 ];
};
}