nixpkgs/pkgs/development/python-modules/distlib/default.nix
2021-10-11 00:12:13 +02:00

23 lines
529 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "distlib";
version = "0.3.3";
src = fetchPypi {
inherit pname version;
sha256 = "d982d0751ff6eaaab5e2ec8e691d949ee80eddf01a62eaa96ddb11531fe16b05";
extension = "zip";
};
# Tests use pypi.org.
doCheck = false;
meta = with lib; {
description = "Low-level components of distutils2/packaging";
homepage = "https://distlib.readthedocs.io";
license = licenses.psfl;
maintainers = with maintainers; [ lnl7 ];
};
}