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

Commits on Jun 29, 2018

  1. python/twisted: Fix fetching source

    In ced21f5, fetchurl has changed into
    fetchPypi, but the upstream tarball is actually a tar.bz2 archive but by
    default fetchPypi uses "tar.gz" as its extension.
    
    The sha256 however is still the same.
    
    Signed-off-by: aszlig <aszlig@nix.build>
    Cc: @FRidh
    aszlig committed Jun 29, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    c15e6fd View commit details
Showing with 1 addition and 0 deletions.
  1. +1 −0 pkgs/development/python-modules/twisted/default.nix
1 change: 1 addition & 0 deletions pkgs/development/python-modules/twisted/default.nix
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ buildPythonPackage rec {

src = fetchPypi {
inherit pname version;
extension = "tar.bz2";
sha256 = "a4cc164a781859c74de47f17f0e85f4bce8a3321a9d0892c015c8f80c4158ad9";
};