depot/third_party/nixpkgs/pkgs/development/python-modules/distlib/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

23 lines
529 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "distlib";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "106fef6dc37dd8c0e2c0a60d3fca3e77460a48907f335fa28420463a6f799736";
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 ];
};
}