python/twisted: Fix fetching source

In ced21f5e1a, 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
This commit is contained in:
aszlig 2018-06-29 23:20:08 +02:00
parent f0090503c7
commit c15e6fd3fd
No known key found for this signature in database
GPG Key ID: 684089CE67EBB691

View File

@ -17,6 +17,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
extension = "tar.bz2";
sha256 = "a4cc164a781859c74de47f17f0e85f4bce8a3321a9d0892c015c8f80c4158ad9";
};