aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/distlib/default.nix
blob: af9b82e42dc3da42524e6cbc04f0d0c4040ffd1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "distlib";
  version = "0.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "edf6116872c863e1aa9d5bb7cb5e05a022c519a4594dc703843343a9ddd9bff1";
    extension = "zip";
  };

  # Tests use pypi.org.
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Low-level components of distutils2/packaging";
    homepage = "https://distlib.readthedocs.io";
    license = licenses.psfl;
    maintainers = with maintainers; [ lnl7 ];
  };
}