mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
displaycal: use python311 for wxPython compat
A newer version has yet to be released. Upstream moved on which causes DisplayCAL @ python3 to now be broken.
This commit is contained in:
parent
e3e90f7b8a
commit
5cd07decd8
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib
|
||||
, python3
|
||||
, python311
|
||||
, fetchPypi
|
||||
, wrapGAppsHook3
|
||||
, gtk3
|
||||
|
@ -8,7 +8,8 @@
|
|||
, argyllcms
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
# wxPython-4.2.1 requires python < 3.12
|
||||
python311.pkgs.buildPythonApplication rec {
|
||||
pname = "displaycal";
|
||||
version = "3.9.12";
|
||||
format = "setuptools";
|
||||
|
@ -24,7 +25,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
gtk3
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = with python311.pkgs; [
|
||||
build
|
||||
certifi
|
||||
wxpython
|
||||
|
|
Loading…
Reference in a new issue