Merge pull request #129529 from fabaff/bump-distutils-extra

python3Packages.distutils-extra: 2.39 -> 2.45

authored by Fabian Affolter and committed by GitHub 1c96ccbb bbd5cdac

+11 -6
+11 -6
pkgs/development/python-modules/distutils_extra/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "distutils-extra"; 8 - version = "2.39"; 8 + version = "2.45"; 9 9 10 10 src = fetchurl { 11 - url = "https://launchpad.net/python-distutils-extra/trunk/${version}/+download/python-${pname}-${version}.tar.gz"; 12 - sha256 = "1bv3h2p9ffbzyddhi5sccsfwrm3i6yxzn0m06fdxkj2zsvs28gvj"; 11 + url = "https://salsa.debian.org/python-team/modules/python-distutils-extra/-/archive/${version}/python-${pname}-${version}.tar.bz2"; 12 + sha256 = "1aifizd4nkvdnkwdna7i6xgjcqi1cf228bg8kmnwz67f5rflk3z8"; 13 13 }; 14 14 15 + # Tests are out-dated as the last upstream release is from 2016 16 + doCheck = false; 17 + 18 + pythonImportsCheck = [ "DistUtilsExtra" ]; 19 + 15 20 meta = with lib; { 16 - homepage = "https://launchpad.net/python-distutils-extra"; 17 21 description = "Enhancements to Python's distutils"; 18 - license = licenses.gpl2; 22 + homepage = "https://launchpad.net/python-distutils-extra"; 23 + license = licenses.gpl2Plus; 24 + maintainers = with maintainers; [ fab ]; 19 25 }; 20 - 21 26 }