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