5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
40 lines
751 B
Nix
40 lines
751 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
black,
|
|
pytest,
|
|
setuptools-scm,
|
|
toml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-black";
|
|
version = "0.3.12";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1d339b004f764d6cd0f06e690f6dd748df3d62e6fe1a692d6a5500ac2c5b75a5";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [
|
|
black
|
|
toml
|
|
];
|
|
|
|
# does not contain tests
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "pytest_black" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pytest plugin to enable format checking with black";
|
|
homepage = "https://github.com/shopkeep/pytest-black";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|