snac2: 2.68 -> 2.70 (#379043)
[NixPkgs.git] / pkgs / development / python-modules / pandoc-attributes / default.nix
blob8322f38835308514d46f95595aa66f64368d4e09
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5   pandocfilters,
6 }:
8 buildPythonPackage rec {
9   pname = "pandoc-attributes";
10   version = "0.1.7";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "69221502dac74f5df1317011ce62c85a83eef5da3b71c63b1908e98224304a8c";
16   };
18   propagatedBuildInputs = [ pandocfilters ];
20   # No tests in pypi source
21   doCheck = false;
23   meta = {
24     homepage = "https://github.com/aaren/pandoc-attributes";
25     description = "Attribute class to be used with pandocfilters";
26     license = lib.licenses.bsd2;
27     maintainers = with lib.maintainers; [ vcanadi ];
28   };