Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage 2, lxml, pycryptodome, colorama }: 3 4buildPythonPackage rec { 5 pname = "libkeepass"; 6 version = "0.3.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "3ed79ea786f7020b14b83c082612ed8fbcc6f8edf65e1697705837ab9e40e9d7"; 11 }; 12 13 propagatedBuildInputs = [ lxml pycryptodome colorama ]; 14 15 # No tests on PyPI 16 doCheck = false; 17 18 meta = with stdenv.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}