11 buildPythonPackage rec {
16 src = fetchFromGitHub {
20 hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A=";
23 nativeBuildInputs = [ flit-core ];
25 # We need to disable tests because this package is part of the bootstrap chain
26 # and its test dependencies cannot be built yet when this is being built.
30 pytest = buildPythonPackage {
31 pname = "${pname}-pytest";
47 description = "A low-level library for installing a Python package from a wheel distribution";
48 homepage = "https://github.com/pypa/installer";
49 changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md";
50 license = licenses.mit;
51 maintainers = teams.python.members ++ [ maintainers.cpcloud ];