Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / distutils-extra / default.nix
blob37ef77947b3f618e9f647eddd4b3f0782e174c8d
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 }:
6 buildPythonPackage rec {
7   pname = "distutils-extra";
8   version = "2.50";
9   format = "setuptools";
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-aq5+JjlzD3fS4+CPxZNjyz2QNfqsChC0w6KRVgbTGwI=";
14   };
16   # Tests are out-dated as the last upstream release is from 2016
17   doCheck = false;
19   pythonImportsCheck = [
20     "DistUtilsExtra"
21   ];
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   };