18 buildPythonPackage rec {
25 inherit pname version;
26 sha256 = "sha256-DrlbLI13DXxMm5LGjCJ8NQu/ZfPsg1UazpCXwYzBX90=";
33 propagatedBuildInputs = [
37 ] ++ lib.optionals (!isPy3k) [
39 ] ++ lib.optionals (pythonOlder "3.8") [
52 "test_isolated_environment_install"
53 "test_default_pip_is_never_too_old"
54 "test_build_isolated - StopIteration"
55 "test_build_raises_build_exception"
56 "test_build_raises_build_backend_exception"
57 "test_projectbuilder.py"
58 "test_projectbuilder.py"
61 pythonImportsCheck = [ "build" ];
64 description = "Simple, correct PEP517 package builder";
66 build will invoke the PEP 517 hooks to build a distribution package. It
67 is a simple build tool and does not perform any dependency management.
69 homepage = "https://github.com/pypa/build";
70 maintainers = with maintainers; [ fab ];
71 license = licenses.mit;