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

Commits on Nov 20, 2020

  1. python37Packages.breathe: 4.23.0 -> 4.24.0

    r-ryantm authored and Jonathan Ringer committed Nov 20, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    bagder Daniel Stenberg
    Copy the full SHA
    e570979 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.23.0";
version = "4.24.0";
pname = "breathe";
disabled = isPy27;

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

propagatedBuildInputs = [ docutils six sphinx ];