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: 00b934f66f56
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f8f7b41b8d68
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 16, 2019

  1. Copy the full SHA
    536de9b View commit details
  2. pythonPackages.importlib-meta: 0.18 -> 0.23

    Jonathan Ringer authored and FRidh committed Oct 16, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f8f7b41 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/development/python-modules/commonmark/default.nix
  2. +2 −2 pkgs/development/python-modules/importlib-metadata/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/commonmark/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "commonmark";
version = "0.8.1";
version = "0.9.1";

src = fetchPypi {
inherit pname version;
sha256 = "abcbc854e0eae5deaf52ae5e328501b78b4a0758bf98ac8bb792fce993006084";
sha256 = "452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60";
};

preCheck = ''
Original file line number Diff line number Diff line change
@@ -13,12 +13,12 @@

buildPythonPackage rec {
pname = "importlib-metadata";
version = "0.18";
version = "0.23";

src = fetchPypi {
pname = "importlib_metadata";
inherit version;
sha256 = "cb6ee23b46173539939964df59d3d72c3e0c1b5d54b84f1d8a7e912fe43612db";
sha256 = "09mdqdfv5rdrwz80jh9m379gxmvk2vhjfz0fg53hid00icvxf65a";
};

nativeBuildInputs = [ setuptools_scm ];