mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 07:01:12 +00:00
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
black,
|
|
fetchpatch,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "black-macchiato";
|
|
version = "1.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wbolster";
|
|
repo = "black-macchiato";
|
|
rev = finalAttrs.version;
|
|
sha256 = "0lc9w50nlbmlzj44krk7kxcia202fhybbnwfh77xixlc7vb4rayl";
|
|
};
|
|
|
|
patches = [
|
|
# fix empty multi-line string test
|
|
(fetchpatch {
|
|
url = "https://github.com/wbolster/black-macchiato/commit/d3243a1c95b5029b3ffa12417f0c587a2ba79bcd.patch";
|
|
hash = "sha256-3m8U6c+1UCRy/Fkq6lk9LhwrFyE+q3GD2jnMA7N4ZJs=";
|
|
})
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ black ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "black" ];
|
|
|
|
meta = {
|
|
description = "This is a small utility built on top of the black Python code formatter to enable formatting of partial files";
|
|
mainProgram = "black-macchiato";
|
|
homepage = "https://github.com/wbolster/black-macchiato";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ jperras ];
|
|
};
|
|
})
|