depot/third_party/nixpkgs/pkgs/development/python-modules/bcdoc/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

22 lines
549 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, docutils, six }:
buildPythonPackage rec {
pname = "bcdoc";
version = "0.16.0";
src = fetchPypi {
inherit pname version;
sha256 = "f568c182e06883becf7196f227052435cffd45604700c82362ca77d3427b6202";
};
buildInputs = [ docutils six ];
# Tests fail due to nix file timestamp normalization.
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/boto/bcdoc";
license = licenses.asl20;
description = "ReST document generation tools for botocore";
};
}