3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.futures: 3.0.3 -> 3.0.4

This commit is contained in:
Frederik Rietdijk 2016-01-24 14:08:44 +01:00
parent e6e5655926
commit 85a3f52e10

View file

@ -8913,16 +8913,23 @@ in modules // {
futures = buildPythonPackage rec {
name = "futures-${version}";
version = "3.0.3";
version = "3.0.4";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz";
sha256 = "2fe2342bb4fe8b8e217f0d21b5921cbe5408bf966d9f92025e707e881b198bed";
sha256 = "19485d83f7bd2151c0aeaf88fbba3ee50dadfb222ffc3b66a344ef4952b782a3";
};
# This module is for backporting functionality to Python 2.x, it's builtin in py3k
disabled = isPy3k;
checkPhase = ''
${python.interpreter} -m unittest discover
'';
# Tests fail
doCheck = false;
meta = with pkgs.stdenv.lib; {
description = "Backport of the concurrent.futures package from Python 3.2";
homepage = "https://github.com/agronholm/pythonfutures";