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