1 { lib, buildPythonPackage, fetchPypi
8 buildPythonPackage rec {
9 pname = "pytest-black";
13 inherit pname version;
14 sha256 = "1d339b004f764d6cd0f06e690f6dd748df3d62e6fe1a692d6a5500ac2c5b75a5";
17 nativeBuildInputs = [ setuptools-scm ];
19 buildInputs = [ pytest ];
21 propagatedBuildInputs = [ black toml ];
23 # does not contain tests
25 pythonImportsCheck = [ "pytest_black" ];
28 description = "A pytest plugin to enable format checking with black";
29 homepage = "https://github.com/shopkeep/pytest-black";
30 license = licenses.mit;
31 maintainers = with maintainers; [ jonringer ];