mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
python3Packages.citeproc-py: init at 0.5.1
This commit is contained in:
parent
a113aa5b6b
commit
4c2504a6bf
34
pkgs/development/python-modules/citeproc-py/default.nix
Normal file
34
pkgs/development/python-modules/citeproc-py/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nose
|
||||||
|
, git
|
||||||
|
, lxml
|
||||||
|
, rnc2rng
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "citeproc-py";
|
||||||
|
version = "0.5.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "00aaff50jy4j0nakdzq9258z1gzrac9baarli2ymgspj88jg5968";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ rnc2rng ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ lxml ];
|
||||||
|
|
||||||
|
checkInputs = [ nose git ];
|
||||||
|
checkPhase = "nosetests tests";
|
||||||
|
doCheck = false; # seems to want a Git repository, but fetchgit with leaveDotGit also fails
|
||||||
|
pythonImportsCheck = [ "citeproc" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/brechtm/citeproc-py";
|
||||||
|
description = "Citation Style Language (CSL) parser for Python";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
|
};
|
||||||
|
}
|
@ -1999,6 +1999,8 @@ in {
|
|||||||
pythonProtobuf = self.protobuf;
|
pythonProtobuf = self.protobuf;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
citeproc-py = callPackage ../development/python-modules/citeproc-py { };
|
||||||
|
|
||||||
colorcet = callPackage ../development/python-modules/colorcet { };
|
colorcet = callPackage ../development/python-modules/colorcet { };
|
||||||
|
|
||||||
coloredlogs = callPackage ../development/python-modules/coloredlogs { };
|
coloredlogs = callPackage ../development/python-modules/coloredlogs { };
|
||||||
|
Loading…
Reference in New Issue
Block a user