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: 023f70ef8ac5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f1d86be8d70f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 4, 2020

  1. python37Packages.breathe: 4.22.1 -> 4.23.0

    r-ryantm authored and Jonathan Ringer committed Nov 4, 2020
    Copy the full SHA
    f1d86be View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/breathe/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/breathe/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ lib, fetchPypi, buildPythonPackage, docutils, six, sphinx, isPy3k, isPy27 }:

buildPythonPackage rec {
version = "4.22.1";
version = "4.23.0";
pname = "breathe";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "6e4b66e61876dac90e78b335788a38eaa3625ed9c70d0add261f98ddd128d36a";
sha256 = "c28e251ad8a42e4d3dd6c0861a66128b400131614b36f19df505ea34c934f801";
};

propagatedBuildInputs = [ docutils six sphinx ];