depot/third_party/nixpkgs/pkgs/development/python-modules/mdformat-simple-breaks/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

37 lines
753 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, mdformat
, mdit-py-plugins
, pythonOlder
}:
buildPythonPackage rec {
pname = "mdformat-simple-breaks";
version = "0.0.1";
format = "flit";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "csala";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-4lJHB4r9lI2uGJ/BmFFc92sumTRKBBwiRmGBdQkzfd0=";
};
buildInputs = [
mdformat
];
pythonImportsCheck = [
"mdformat_simple_breaks"
];
meta = with lib; {
description = "mdformat plugin to render thematic breaks using three dashes";
homepage = "https://github.com/csala/mdformat-simple-breaks";
license = licenses.mit;
maintainers = with maintainers; [ aldoborrero ];
};
}