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