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