1{ lib, fetchPypi, buildPythonPackage 2, lxml, pycryptodome, colorama }: 3 4buildPythonPackage rec { 5 pname = "libkeepass"; 6 version = "0.3.1.post1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0pwg7n9xqcjia1qmz6g48h5s31slh3mxmcqag73gq4zhl4xb6bai"; 11 }; 12 13 propagatedBuildInputs = [ lxml pycryptodome colorama ]; 14 15 # No tests on PyPI 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/libkeepass/libkeepass"; 20 description = "A library to access KeePass 1.x/KeePassX (v3) and KeePass 2.x (v4) files"; 21 license = licenses.gpl2Plus; 22 maintainers = with maintainers; [ jqueiroz ]; 23 }; 24}