1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 docutils,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "bcdoc";
11 version = "0.16.0";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "f568c182e06883becf7196f227052435cffd45604700c82362ca77d3427b6202";
17 };
18
19 buildInputs = [
20 docutils
21 six
22 ];
23
24 # Tests fail due to nix file timestamp normalization.
25 doCheck = false;
26
27 meta = with lib; {
28 homepage = "https://github.com/boto/bcdoc";
29 license = licenses.asl20;
30 description = "ReST document generation tools for botocore";
31 };
32}