lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.pylibjpeg-libjpeg: add changelog to meta

- add format
- specify liccense

authored by

Fabian Affolter and committed by
GitHub
2219f709 1cab349a

+11 -3
+11 -3
pkgs/development/python-modules/pylibjpeg-libjpeg/default.nix
··· 10 10 buildPythonPackage rec { 11 11 pname = "pylibjpeg-libjpeg"; 12 12 version = "1.3.4"; 13 + format = "setuptools"; 14 + 13 15 disabled = pythonOlder "3.7"; 14 16 15 17 src = fetchFromGitHub { ··· 20 22 fetchSubmodules = true; 21 23 }; 22 24 23 - nativeBuildInputs = [ cython]; 25 + nativeBuildInputs = [ 26 + cython 27 + ]; 24 28 25 - propagatedBuildInputs = [ numpy ]; 29 + propagatedBuildInputs = [ 30 + numpy 31 + ]; 26 32 27 33 nativeCheckInputs = [ 28 34 pytestCheckHook 29 35 ]; 36 + 30 37 doCheck = false; # tests try to import 'libjpeg.data', which errors 31 38 32 39 pythonImportsCheck = [ ··· 36 43 meta = with lib; { 37 44 description = "A JPEG, JPEG-LS and JPEG XT plugin for pylibjpeg"; 38 45 homepage = "https://github.com/pydicom/pylibjpeg-libjpeg"; 39 - license = licenses.gpl3; 46 + changelog = "https://github.com/pydicom/pylibjpeg-libjpeg/releases/tag/v${version}"; 47 + license = licenses.gpl3Only; 40 48 maintainers = with maintainers; [ bcdarwin ]; 41 49 }; 42 50 }