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

Commits on Jan 17, 2020

  1. luigi: 2.8.0 -> 2.8.11

    r-ryantm authored and marsam committed Jan 17, 2020
    Copy the full SHA
    cf0640b View commit details

Commits on Jan 19, 2020

  1. Merge pull request #77885 from r-ryantm/auto-update/luigi

    luigi: 2.8.0 -> 2.8.11
    marsam authored Jan 19, 2020
    Copy the full SHA
    8ac5308 View commit details
Showing with 3 additions and 8 deletions.
  1. +3 −8 pkgs/applications/networking/cluster/luigi/default.nix
11 changes: 3 additions & 8 deletions pkgs/applications/networking/cluster/luigi/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,14 @@

python3Packages.buildPythonApplication rec {
pname = "luigi";
version = "2.8.0";
version = "2.8.11";

src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1869lb6flmca6s7ccws7mvyn66nvrqjky40jwf2liv9fg0lp8899";
sha256 = "17nc5xrqp6hp3ayscvdpsiiga8gsfpa4whsk0n97gzk5qpndrcy2";
};

# Relax version constraint
postPatch = ''
sed -i 's/<2.2.0//' setup.py
'';

propagatedBuildInputs = with python3Packages; [ tornado_4 python-daemon boto3 ];
propagatedBuildInputs = with python3Packages; [ dateutil tornado_4 python-daemon boto3 ];

# Requires tox, hadoop, and google cloud
doCheck = false;