about summary refs log tree commit diff
path: root/pkgs/development/python-modules/md2pdf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/md2pdf/default.nix')
-rw-r--r--pkgs/development/python-modules/md2pdf/default.nix57
1 files changed, 57 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/md2pdf/default.nix b/pkgs/development/python-modules/md2pdf/default.nix
new file mode 100644
index 000000000000..abcb118aa818
--- /dev/null
+++ b/pkgs/development/python-modules/md2pdf/default.nix
@@ -0,0 +1,57 @@
+{
+  buildPythonPackage,
+  docopt,
+  fetchFromGitHub,
+  lib,
+  markdown2,
+  pytest-cov-stub,
+  pytestCheckHook,
+  setuptools,
+  weasyprint,
+}:
+
+buildPythonPackage rec {
+  pname = "md2pdf";
+  version = "1.0.1";
+  pyproject = true;
+
+  src = fetchFromGitHub {
+    owner = "jmaupetit";
+    repo = "md2pdf";
+    rev = "refs/tags/${version}";
+    hash = "sha256-9B1vVfcBHk+xdE2Xouu95j3Hp4xm9d5DgPv2zKwCvHY=";
+  };
+
+  postPatch = ''
+    substituteInPlace setup.py \
+      --replace-fail '"pytest-runner",' ""
+  '';
+
+  build-system = [ setuptools ];
+
+  dependencies = [
+    docopt
+    markdown2
+    weasyprint
+  ];
+
+  pythonImportsCheck = [ "md2pdf" ];
+
+  nativeCheckInputs = [
+    pytest-cov-stub
+    pytestCheckHook
+  ];
+
+  preCheck = ''
+    export PATH="$out/bin:$PATH"
+  '';
+
+  meta = {
+    changelog = "https://github.com/jmaupetit/md2pdf/blob/${src.rev}/CHANGELOG.md";
+    description = "Markdown to PDF conversion tool";
+    homepage = "https://github.com/jmaupetit/md2pdf";
+    license = lib.licenses.mit;
+    mainProgram = "md2pdf";
+    maintainers = with lib.maintainers; [ dotlambda ];
+  };
+}