nixpkgs/pkgs/development/python-modules/bcdoc/default.nix

23 lines
551 B
Nix
Raw Normal View History

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