2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, docutils, six }:
|
2018-03-31 12:03:55 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bcdoc";
|
2018-04-04 20:02:11 +02:00
|
|
|
version = "0.16.0";
|
2018-03-31 12:03:55 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-04 20:02:11 +02:00
|
|
|
sha256 = "f568c182e06883becf7196f227052435cffd45604700c82362ca77d3427b6202";
|
2018-03-31 12:03:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ docutils six ];
|
|
|
|
|
|
|
|
# Tests fail due to nix file timestamp normalization.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-12-08 17:50:31 +01:00
|
|
|
homepage = "https://github.com/boto/bcdoc";
|
2018-03-31 12:03:55 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
description = "ReST document generation tools for botocore";
|
|
|
|
};
|
|
|
|
}
|