mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
eae1f92664
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-breathe/versions
24 lines
527 B
Nix
24 lines
527 B
Nix
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "4.11.0";
|
|
pname = "breathe";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "05x3qrvsriy0cn0p4bxnzhp27pvxbq2vxlxncr2wqh003gpbp4fa";
|
|
};
|
|
|
|
propagatedBuildInputs = [ docutils six sphinx ];
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
meta = {
|
|
homepage = https://github.com/michaeljones/breathe;
|
|
license = lib.licenses.bsd3;
|
|
description = "Sphinx Doxygen renderer";
|
|
inherit (sphinx.meta) platforms;
|
|
};
|
|
}
|
|
|