depot/third_party/nixpkgs/pkgs/development/python-modules/panflute/default.nix
Default email 14910f5943 Project import generated by Copybara.
GitOrigin-RevId: 5aaed40d22f0d9376330b6fa413223435ad6fee5
2022-01-13 15:06:32 -05:00

31 lines
602 B
Nix

{ lib
, fetchPypi
, click
, pyyaml
, buildPythonPackage
, isPy3k
}:
buildPythonPackage rec{
version = "2.1.3";
pname = "panflute";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "y5QkT+dmiTuy8XLruCfsPe12G4//qE5MhLZ4ufip/5U=";
};
propagatedBuildInputs = [
click
pyyaml
];
meta = with lib; {
description = "A Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions";
homepage = "http://scorreia.com/software/panflute";
license = licenses.bsd3;
maintainers = with maintainers; [ synthetica ];
};
}