Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 29 lines 650 B view raw
1{ lib, fetchPypi, buildPythonPackage 2, lxml, pycryptodome, construct 3, argon2_cffi, dateutil, future 4}: 5 6buildPythonPackage rec { 7 pname = "pykeepass"; 8 version = "3.2.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1ysjn92bixq8wkwhlbhrjj9z0h80qnlnj7ks5478ndkzdw5gxvm1"; 13 }; 14 15 propagatedBuildInputs = [ 16 lxml pycryptodome construct 17 argon2_cffi dateutil future 18 ]; 19 20 # no tests in PyPI tarball 21 doCheck = false; 22 23 meta = { 24 homepage = https://github.com/pschmitt/pykeepass; 25 description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)"; 26 license = lib.licenses.gpl3; 27 }; 28 29}