mloader: relax protobuf constraint

This commit is contained in:
Martin Weinelt
2022-09-19 16:06:02 +02:00
committed by Sandro Jäckel
parent a65038de68
commit 8f8a5815f0
+6
View File
@@ -3,12 +3,18 @@
python3Packages.buildPythonApplication rec {
pname = "mloader";
version = "1.1.9";
format = "setuptools";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "81e4dc7117999d502e3345f8e32df8b16cca226b8b508976dde2de81a4cc2b19";
};
postPatch = ''
substituteInPlace setup.py \
--replace "protobuf~=3.6" "protobuf"
'';
propagatedBuildInputs = with python3Packages; [
click
protobuf