Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mkdocs-drawio-exporter / default.nix
blob84823937388a820755885c2ba7c6fde6dbc77148
1 { buildPythonPackage
2 , drawio-headless
3 , fetchPypi
4 , isPy3k
5 , lib
6 , mkdocs
7 }:
9 buildPythonPackage rec {
10   pname = "mkdocs-drawio-exporter";
11   version = "0.8.0";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-9cvA186FS6bHmpOrv4OfPZ5kRfgfafBfaWxgWJIlwwA=";
18   };
20   propagatedBuildInputs = [ mkdocs drawio-headless ];
22   pythonImportsCheck = [ "mkdocsdrawioexporter" ];
24   meta = with lib; {
25     description = "Exports your Draw.io diagrams at build time for easier embedding into your documentation.";
26     homepage = "https://github.com/LukeCarrier/mkdocs-drawio-exporter/";
27     license = licenses.mit;
28     maintainers = with maintainers; [ snpschaaf ];
29     longDescription = ''
30       Exports your Draw.io diagrams at build time for easier embedding into your documentation.
31     '';
32   };