Skip to content

Commit df3ea3c

Browse files
python312Packages.pylibjpeg-libjpeg: 2.2.0 -> 2.3.0 (NixOS#373051)
2 parents c313162 + 890e8cb commit df3ea3c

File tree

1 file changed

+8
-3
lines changed
  • pkgs/development/python-modules/pylibjpeg-libjpeg

1 file changed

+8
-3
lines changed

pkgs/development/python-modules/pylibjpeg-libjpeg/default.nix

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,24 @@
1212

1313
buildPythonPackage rec {
1414
pname = "pylibjpeg-libjpeg";
15-
version = "2.2.0";
15+
version = "2.3.0";
1616
pyproject = true;
1717

18-
disabled = pythonOlder "3.7";
18+
disabled = pythonOlder "3.9";
1919

2020
src = fetchFromGitHub {
2121
owner = "pydicom";
2222
repo = pname;
2323
tag = "v${version}";
24-
hash = "sha256-g4dGIGHo0J+F0KTVA6yjgfwiYVn6iU69jgHhvEQGwOc=";
24+
hash = "sha256-xqSA1cutTsH9k4l9CW96n/CURzkAyDi3PZylZeedVjA=";
2525
fetchSubmodules = true;
2626
};
2727

28+
postPatch = ''
29+
substituteInPlace pyproject.toml \
30+
--replace-fail 'poetry-core >=1.8,<2' 'poetry-core'
31+
'';
32+
2833
build-system = [
2934
cython
3035
poetry-core

0 commit comments

Comments
 (0)