nixpkgs/pkgs/development/python-modules/pybtex/default.nix
R. RyanTM fae39f76ff python37Packages.pybtex: 0.21 -> 0.22.0 (#52107)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pybtex/versions
2018-12-15 13:07:31 +01:00

21 lines
500 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, latexcodec, pyyaml }:
buildPythonPackage rec {
version = "0.22.0";
pname = "pybtex";
doCheck = false;
propagatedBuildInputs = [ latexcodec pyyaml ];
src = fetchPypi {
inherit version pname;
sha256 = "0rprg7h12pv9rb6bi950mz1disc265sg5qcg34637ns1z74hxdr6";
};
meta = {
homepage = "https://pybtex.org/";
description = "A BibTeX-compatible bibliography processor written in Python";
license = stdenv.lib.licenses.mit;
};
}