ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / py3rijndael / default.nix
blobbe098df6a6a88f494ab4be49399675c0dcbdef3c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 let
8   pname = "py3rijndael";
9   version = "0.3.3";
11 buildPythonPackage {
12   inherit pname version;
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-tmVaPr/zoQVA6u0EnoeI7qOsk9a3GzpqwrACJLvs6ag=";
18   };
20   checkInputs = [
21     pytestCheckHook
22   ];
24   meta = with lib; {
25     description = "Rijndael algorithm library";
26     homepage = "https://github.com/meyt/py3rijndael";
27     license = licenses.mit;
28     maintainers = with maintainers; [ hexa ];
29   };