9 buildPythonPackage rec {
10 pname = "black-macchiato";
13 disabled = pythonOlder "3.6";
15 src = fetchFromGitHub {
19 sha256 = "0lc9w50nlbmlzj44krk7kxcia202fhybbnwfh77xixlc7vb4rayl";
22 propagatedBuildInputs = [ black ];
24 nativeCheckInputs = [ pytestCheckHook black ];
26 pythonImportsCheck = [ "black" ];
29 description = "This is a small utility built on top of the black Python code formatter to enable formatting of partial files";
30 homepage = "https://github.com/wbolster/black-macchiato";
31 license = licenses.bsd3;
32 maintainers = with maintainers; [ jperras ];