python313Packages.python-olm: drop unused dependency future (#417979)

This commit is contained in:
dotlambda
2025-06-18 19:23:03 -07:00
committed by GitHub
@@ -2,8 +2,8 @@
buildPythonPackage,
isPy3k,
olm,
setuptools,
cffi,
future,
aspectlib,
pytest-benchmark,
pytestCheckHook,
@@ -11,8 +11,8 @@
buildPythonPackage {
pname = "python-olm";
format = "setuptools";
inherit (olm) src version;
pyproject = true;
disabled = !isPy3k;
@@ -23,9 +23,12 @@ buildPythonPackage {
make include/olm/olm.h
'';
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
cffi
future
];
propagatedNativeBuildInputs = [ cffi ];