mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
24 lines
564 B
Nix
24 lines
564 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 = with lib; {
|
|
homepage = "https://github.com/boto/bcdoc";
|
|
license = licenses.asl20;
|
|
description = "ReST document generation tools for botocore";
|
|
};
|
|
}
|