567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
33 lines
579 B
Nix
33 lines
579 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
docutils,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bcdoc";
|
|
version = "0.16.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f568c182e06883becf7196f227052435cffd45604700c82362ca77d3427b6202";
|
|
};
|
|
|
|
buildInputs = [
|
|
docutils
|
|
six
|
|
];
|
|
|
|
# Tests fail due to nix file timestamp normalization.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/boto/bcdoc";
|
|
license = lib.licenses.asl20;
|
|
description = "ReST document generation tools for botocore";
|
|
};
|
|
}
|