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: 86956b98e652
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3ed222ebd419
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Apr 1, 2019

  1. python36.pkgs.contextvars: 2.3 -> 2.4

    Robert Schütz committed Apr 1, 2019
    Copy the full SHA
    3ed222e View commit details
Showing with 2 additions and 15 deletions.
  1. +2 −4 pkgs/development/python-modules/contextvars/default.nix
  2. +0 −11 pkgs/development/python-modules/contextvars/immutables_version.patch
6 changes: 2 additions & 4 deletions pkgs/development/python-modules/contextvars/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,14 @@

buildPythonPackage rec {
pname = "contextvars";
version = "2.3";
version = "2.4";
disabled = !isPy36;

src = fetchPypi {
inherit pname version;
sha256 = "09fnni8cyxm070bfv9ay030qbyk0dfds5nq77s0p38h33hp08h93";
sha256 = "f38c908aaa59c14335eeea12abea5f443646216c4e29380d7bf34d2018e2c39e";
};

# pull request for this patch is https://github.com/MagicStack/contextvars/pull/9
patches = [ ./immutables_version.patch ];
propagatedBuildInputs = [ immutables ];

meta = {

This file was deleted.