10 buildPythonPackage rec {
11 pname = "black-macchiato";
13 format = "setuptools";
15 disabled = pythonOlder "3.6";
17 src = fetchFromGitHub {
21 sha256 = "0lc9w50nlbmlzj44krk7kxcia202fhybbnwfh77xixlc7vb4rayl";
24 propagatedBuildInputs = [ black ];
31 pythonImportsCheck = [ "black" ];
34 description = "This is a small utility built on top of the black Python code formatter to enable formatting of partial files";
35 mainProgram = "black-macchiato";
36 homepage = "https://github.com/wbolster/black-macchiato";
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ jperras ];