pythonPackages.pybtex-docutils: init at 0.2.1
This commit is contained in:
committed by
Vincent Laporte
parent
5210122969
commit
e8a588894e
20
pkgs/development/python-modules/pybtex-docutils/default.nix
Normal file
20
pkgs/development/python-modules/pybtex-docutils/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, docutils, pybtex, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.2.1";
|
||||
pname = "pybtex-docutils";
|
||||
|
||||
doCheck = false;
|
||||
buildInputs = [ docutils pybtex six ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0dqk4lplij7rbqqi4dbpw3wzr4wj08ysswvdibls6s0x3ij7bc74";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A docutils backend for pybtex";
|
||||
homepage = "https://github.com/mcmtroffaes/pybtex-docutils";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user