Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestCheckHook 5}: 6 7let 8 pname = "py3rijndael"; 9 version = "0.3.3"; 10in 11buildPythonPackage { 12 inherit pname version; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-tmVaPr/zoQVA6u0EnoeI7qOsk9a3GzpqwrACJLvs6ag="; 18 }; 19 20 nativeCheckInputs = [ 21 pytestCheckHook 22 ]; 23 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 }; 30}