python3Packages.distutils-extra: 2.39 -> 2.45
This commit is contained in:
parent
68d0c4fc9c
commit
72593ad859
1 changed files with 11 additions and 6 deletions
|
@ -5,17 +5,22 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "distutils-extra";
|
pname = "distutils-extra";
|
||||||
version = "2.39";
|
version = "2.45";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://launchpad.net/python-distutils-extra/trunk/${version}/+download/python-${pname}-${version}.tar.gz";
|
url = "https://salsa.debian.org/python-team/modules/python-distutils-extra/-/archive/${version}/python-${pname}-${version}.tar.bz2";
|
||||||
sha256 = "1bv3h2p9ffbzyddhi5sccsfwrm3i6yxzn0m06fdxkj2zsvs28gvj";
|
sha256 = "1aifizd4nkvdnkwdna7i6xgjcqi1cf228bg8kmnwz67f5rflk3z8";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Tests are out-dated as the last upstream release is from 2016
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "DistUtilsExtra" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://launchpad.net/python-distutils-extra";
|
|
||||||
description = "Enhancements to Python's distutils";
|
description = "Enhancements to Python's distutils";
|
||||||
license = licenses.gpl2;
|
homepage = "https://launchpad.net/python-distutils-extra";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue