depot/third_party/nixpkgs/pkgs/development/python-modules/pybtex/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

34 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;
};
}