lol

python311Packages.commoncode: 31.0.2 -> 31.0.3

Changelog: https://github.com/nexB/commoncode/blob/v31.0.3/CHANGELOG.rst

+5 -14
+5 -14
pkgs/development/python-modules/commoncode/default.nix
··· 5 , buildPythonPackage 6 , click 7 , fetchPypi 8 - , intbitset 9 , pytest-xdist 10 , pytestCheckHook 11 , pythonAtLeast ··· 14 , saneyaml 15 , setuptools-scm 16 , text-unidecode 17 - , typing 18 }: 19 20 buildPythonPackage rec { 21 pname = "commoncode"; 22 - version = "31.0.2"; 23 format = "pyproject"; 24 25 - disabled = pythonOlder "3.6"; 26 27 src = fetchPypi { 28 inherit pname version; 29 - hash = "sha256-UWd8fTHVEC5ywETfMIWjfXm4xiNaMrVpwkQ/woeXc0k="; 30 }; 31 32 - postPatch = '' 33 - substituteInPlace setup.cfg \ 34 - --replace "intbitset >= 2.3.0, < 3.0" "intbitset >= 2.3.0" 35 - ''; 36 - 37 dontConfigure = true; 38 39 nativeBuildInputs = [ ··· 44 attrs 45 beautifulsoup4 46 click 47 - intbitset 48 requests 49 saneyaml 50 text-unidecode 51 - ] ++ lib.optionals (pythonOlder "3.7") [ 52 - typing 53 ]; 54 55 nativeCheckInputs = [ ··· 83 meta = with lib; { 84 description = "A set of common utilities, originally split from ScanCode"; 85 homepage = "https://github.com/nexB/commoncode"; 86 license = licenses.asl20; 87 - maintainers = [ ]; 88 }; 89 }
··· 5 , buildPythonPackage 6 , click 7 , fetchPypi 8 , pytest-xdist 9 , pytestCheckHook 10 , pythonAtLeast ··· 13 , saneyaml 14 , setuptools-scm 15 , text-unidecode 16 }: 17 18 buildPythonPackage rec { 19 pname = "commoncode"; 20 + version = "31.0.3"; 21 format = "pyproject"; 22 23 + disabled = pythonOlder "3.7"; 24 25 src = fetchPypi { 26 inherit pname version; 27 + hash = "sha256-ura55/m/iesqN6kSYmdHB1sbthSHXaFWiQ76wVmyl0E="; 28 }; 29 30 dontConfigure = true; 31 32 nativeBuildInputs = [ ··· 37 attrs 38 beautifulsoup4 39 click 40 requests 41 saneyaml 42 text-unidecode 43 ]; 44 45 nativeCheckInputs = [ ··· 73 meta = with lib; { 74 description = "A set of common utilities, originally split from ScanCode"; 75 homepage = "https://github.com/nexB/commoncode"; 76 + changelog = "https://github.com/nexB/commoncode/blob/v${version}/CHANGELOG.rst"; 77 license = licenses.asl20; 78 + maintainers = with maintainers; [ ]; 79 }; 80 }