Files
nixpkgs/pkgs/development/python-modules/pybtex/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

35 lines
619 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
latexcodec,
pyyaml,
setuptools,
}:
buildPythonPackage rec {
version = "0.24.0";
format = "setuptools";
pname = "pybtex";
doCheck = false;
pythonImportsCheck = [ "pybtex" ];
propagatedBuildInputs = [
latexcodec
pyyaml
setuptools
];
src = fetchPypi {
inherit version pname;
sha256 = "818eae35b61733e5c007c3fcd2cfb75ed1bc8b4173c1f70b56cc4c0802d34755";
};
meta = with lib; {
homepage = "https://pybtex.org/";
description = "BibTeX-compatible bibliography processor written in Python";
license = licenses.mit;
};
}