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

30 lines
662 B
Nix
Raw Normal View History

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