Files
nixpkgs/pkgs/development/python-modules/pandoc-attributes/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

30 lines
628 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
pandocfilters,
}:
buildPythonPackage rec {
pname = "pandoc-attributes";
version = "0.1.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "69221502dac74f5df1317011ce62c85a83eef5da3b71c63b1908e98224304a8c";
};
propagatedBuildInputs = [ pandocfilters ];
# No tests in pypi source
doCheck = false;
meta = {
homepage = "https://github.com/aaren/pandoc-attributes";
description = "Attribute class to be used with pandocfilters";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ vcanadi ];
};
}