Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / bcdoc / default.nix
blob29c267aa45fbe13eb6deaf14bb7448d3f8a30ce7
1 { lib, buildPythonPackage, fetchPypi, docutils, six }:
3 buildPythonPackage rec {
4   pname = "bcdoc";
5   version = "0.16.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f568c182e06883becf7196f227052435cffd45604700c82362ca77d3427b6202";
10   };
12   buildInputs = [ docutils six ];
14   # Tests fail due to nix file timestamp normalization.
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/boto/bcdoc";
19     license = licenses.asl20;
20     description = "ReST document generation tools for botocore";
21   };