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