1{ stdenv, buildPythonPackage, fetchPypi, docutils, pybtex, six }:
2
3buildPythonPackage rec {
4 version = "0.2.2";
5 pname = "pybtex-docutils";
6
7 doCheck = false;
8 buildInputs = [ docutils pybtex six ];
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "ea90935da188a0f4de2fe6b32930e185c33a0e306154322ccc12e519ebb5fa7d";
13 };
14
15 meta = {
16 description = "A docutils backend for pybtex";
17 homepage = "https://github.com/mcmtroffaes/pybtex-docutils";
18 license = stdenv.lib.licenses.mit;
19 };
20}