depot/third_party/nixpkgs/pkgs/development/python-modules/blacken-docs/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

42 lines
850 B
Nix

{
black,
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "blacken-docs";
version = "1.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "adamchainz";
repo = "blacken-docs";
rev = version;
hash = "sha256-3FGuFOAHCcybPwujWlh58NWtuF5CebaKTgBWgCGpSL8=";
};
build-system = [
setuptools
];
dependencies = [
black
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
homepage = "https://github.com/adamchainz/blacken-docs";
changelog = "https://github.com/adamchainz/blacken-docs/blob/${src.rev}/CHANGELOG.rst";
description = "Run Black on Python code blocks in documentation files";
license = licenses.mit;
maintainers = with maintainers; [ l0b0 ];
mainProgram = "blacken-docs";
};
}