My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/pykeepass/default.nix

27 lines
613 B

{ lib, fetchPypi, buildPythonPackage
, lxml, pycryptodome, construct
, argon2_cffi, dateutil, enum34
}:
buildPythonPackage rec {
pname = "pykeepass";
version = "3.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "2c9e2ddb03ee696ed8aa72c2cddfb81280614864e003226141d68b975aa56f6f";
};
propagatedBuildInputs = [
lxml pycryptodome construct
argon2_cffi dateutil enum34
];
meta = {
homepage = https://github.com/pschmitt/pykeepass;
description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)";
license = lib.licenses.gpl3;
};
}