thrift: wrap python environment and provide six

This commit is contained in:
Martin Weinelt
2025-08-09 19:05:15 +02:00
parent 74f87a6375
commit d1dcc6aabd
+11 -5
View File
@@ -33,11 +33,17 @@ stdenv.mkDerivation rec {
cmake
flex
pkg-config
python3
python3.pkgs.setuptools
]
++ lib.optionals (!static) [
python3.pkgs.twisted
(python3.withPackages (
ps:
with ps;
[
setuptools
six
]
++ lib.optionals (!static) [
twisted
]
))
];
buildInputs = [