11 buildPythonPackage rec {
12 pname = "pytest-black";
14 format = "setuptools";
17 inherit pname version;
18 sha256 = "1d339b004f764d6cd0f06e690f6dd748df3d62e6fe1a692d6a5500ac2c5b75a5";
21 nativeBuildInputs = [ setuptools-scm ];
23 buildInputs = [ pytest ];
25 propagatedBuildInputs = [
30 # does not contain tests
32 pythonImportsCheck = [ "pytest_black" ];
35 description = "Pytest plugin to enable format checking with black";
36 homepage = "https://github.com/shopkeep/pytest-black";
37 license = licenses.mit;