summary refs log tree commit diff
path: root/pkgs/development/python-modules/distlib/default.nix
blob: 81575058b15718abaa42e710d428bbee99224b4d (plain) (blame)
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.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08fyi2r246733vharl2yckw20rilci28r91mzrnnvcr638inw5if";
    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 ];
  };
}