Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a4409f710bc9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 67303ddff6b4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 10, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    64eacb2 View commit details
  2. Merge pull request #84907 from r-ryantm/auto-update/python3.7-breathe

    python37Packages.breathe: 4.14.1 -> 4.14.2
    bhipple authored Apr 10, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    67303dd View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/breathe/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/breathe/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:

buildPythonPackage rec {
version = "4.14.1";
version = "4.14.2";
pname = "breathe";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "1ia9iq3kk0g8cqcsf03di3cnq295gfixriqfpp9wd38zf2wgq0l1";
sha256 = "1vj2yylff07hh4l3sh3srhpnrk1q6pxznvwqzgmbplhn8gf5rimb";
};

propagatedBuildInputs = [ docutils six sphinx ];

doCheck = !isPy3k;

meta = {
homepage = https://github.com/michaeljones/breathe;
homepage = "https://github.com/michaeljones/breathe";
license = lib.licenses.bsd3;
description = "Sphinx Doxygen renderer";
inherit (sphinx.meta) platforms;