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

Commits on Sep 6, 2017

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lsix lsix
    Copy the full SHA
    c2c9960 View commit details
  2. Merge pull request #29053 from lsix/update_django_1_10

    pythonPackages.django: 1.10.7 -> 1.10.8 (release 17.03)
    FRidh authored Sep 6, 2017
    Copy the full SHA
    ee26c61 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/django/1_10.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/django/1_10.nix
Original file line number Diff line number Diff line change
@@ -4,12 +4,12 @@
}:
buildPythonPackage rec {
name = "Django-${version}";
version = "1.10.7";
version = "1.10.8";
disabled = pythonOlder "2.7";

src = fetchurl {
url = "http://www.djangoproject.com/m/releases/1.10/${name}.tar.gz";
sha256 = "1f5hnn2dzfr5szk4yc47bs4kk2nmrayjcvgpqi2s4l13pjfpfgar";
sha256 = "1fwqqh2zbcy9dy0lnvk338s11llnnfz2k56bf84w0wv56ayq7vyl";
};

patches = [