test liblzma

This commit is contained in:
HarithaVattikuti 2024-05-02 10:38:16 -05:00
parent c03f98f186
commit 7e162ad21f

View File

@ -75,6 +75,13 @@ class UbuntuPythonBuilder : NixPythonBuilder {
Execute-Command -Command "sudo apt-get update"
Execute-Command -Command $tkinterInstallString
### install liblzma-dev for Python 3.3.0 and higher versions
if ($this.Version -ge "3.3.0") {
Execute-Command -Command "sudo apt-get install liblzma-dev"
}
### Install dependent packages
@(
"make",