nixpkgs/pkgs/development/python-modules/pybtex/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
588 B
Nix
Raw Normal View History

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