10 buildPythonPackage rec {
11 pname = "citeproc-py";
15 inherit pname version;
16 sha256 = "00aaff50jy4j0nakdzq9258z1gzrac9baarli2ymgspj88jg5968";
19 buildInputs = [ rnc2rng ];
21 propagatedBuildInputs = [ lxml ];
23 checkInputs = [ nose git ];
24 checkPhase = "nosetests tests";
25 doCheck = false; # seems to want a Git repository, but fetchgit with leaveDotGit also fails
26 pythonImportsCheck = [ "citeproc" ];
29 homepage = "https://github.com/brechtm/citeproc-py";
30 description = "Citation Style Language (CSL) parser for Python";
31 license = licenses.bsd2;
32 maintainers = with maintainers; [ bcdarwin ];