pythonPackages.pykeepass: fix build
Add missing dependency future
This commit is contained in:
parent
9dd81f9389
commit
80b6892362
@ -1,6 +1,6 @@
|
||||
{ lib, fetchPypi, buildPythonPackage
|
||||
, lxml, pycryptodome, construct
|
||||
, argon2_cffi, dateutil, enum34
|
||||
, argon2_cffi, dateutil, future
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -14,9 +14,12 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
lxml pycryptodome construct
|
||||
argon2_cffi dateutil enum34
|
||||
argon2_cffi dateutil future
|
||||
];
|
||||
|
||||
# no tests in PyPI tarball
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/pschmitt/pykeepass;
|
||||
description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)";
|
||||
|
Loading…
Reference in New Issue
Block a user