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