fix: doesn't build without a version

This commit is contained in:
Khaïs COLIN 2024-08-26 19:22:52 +02:00
parent fc58983915
commit aafb64ce51

View file

@ -26,7 +26,7 @@
pkgs.mkShell { packages = [ pythonEnv ]; };
packages.x86_64-linux.default =
let
attrs = project.renderers.buildPythonPackage { inherit python; };
attrs = project.renderers.buildPythonPackage { inherit python; } // { version = "0.4.0"; };
in
python.pkgs.buildPythonPackage attrs;
};