mdbook-pdf-outline: init at 0.1.4
This commit is contained in:
parent
fd6ea004a0
commit
b17969fe5a
31
pkgs/by-name/md/mdbook-pdf-outline/package.nix
Normal file
31
pkgs/by-name/md/mdbook-pdf-outline/package.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, python3Packages
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "mdbook-pdf-outline";
|
||||
version = "0.1.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-STi+54iT+5+Xi0IzGXv2dxVS91+T6fjg3xmbJjekpPE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3Packages.setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python3Packages.lxml
|
||||
python3Packages.pypdf
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/HollowMan6/mdbook-pdf";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ nix-julia ];
|
||||
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user