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