nixpkgs/pkgs/development/python-modules/pykeepass/default.nix

30 lines
650 B
Nix
Raw Normal View History

2018-09-11 23:42:17 +00:00
{ lib, fetchPypi, buildPythonPackage
, lxml, pycryptodome, construct
, argon2_cffi, dateutil, future
2018-09-11 23:42:17 +00:00
}:
buildPythonPackage rec {
pname = "pykeepass";
version = "3.2.0";
2018-09-11 23:42:17 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1ysjn92bixq8wkwhlbhrjj9z0h80qnlnj7ks5478ndkzdw5gxvm1";
2018-09-11 23:42:17 +00:00
};
propagatedBuildInputs = [
lxml pycryptodome construct
argon2_cffi dateutil future
2018-09-11 23:42:17 +00:00
];
# no tests in PyPI tarball
doCheck = false;
2018-09-11 23:42:17 +00:00
meta = {
homepage = https://github.com/pschmitt/pykeepass;
description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)";
license = lib.licenses.gpl3;
};
}