anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / distlib / default.nix
blobf9da72b61c3f673593c780ee17a7fa94073cbf53
2   lib,
3   stdenv,
4   buildPythonPackage,
5   fetchPypi,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "distlib";
11   version = "0.3.8";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-FTDqE+NQAxtjEthYDdtrJ6EEJ1oxEGUjuPEjeH9JT2Q=";
17   };
19   nativeBuildInputs = [ setuptools ];
21   postFixup = lib.optionalString (!stdenv.hostPlatform.isWindows) ''
22     find $out -name '*.exe' -delete
23   '';
25   pythonImportsCheck = [
26     "distlib"
27     "distlib.database"
28     "distlib.locators"
29     "distlib.index"
30     "distlib.markers"
31     "distlib.metadata"
32     "distlib.util"
33     "distlib.resources"
34   ];
36   # Tests use pypi.org.
37   doCheck = false;
39   meta = with lib; {
40     description = "Low-level components of distutils2/packaging";
41     homepage = "https://distlib.readthedocs.io";
42     license = licenses.psfl;
43     maintainers = with maintainers; [ lnl7 ];
44   };