Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / futures / default.nix
blobbc19a31927af1e88bee3d71b9378e2f6932cf928
1 { lib, buildPythonPackage, fetchPypi, isPy3k, python, stdenv }:
3 buildPythonPackage rec {
4   pname = "futures";
5   version = "3.3.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "7e033af76a5e35f58e56da7a91e687706faf4e7bdfb2cbc3f2cca6b9bcda9794";
10   };
12   # This module is for backporting functionality to Python 2.x, it's builtin in py3k
13   disabled = isPy3k;
15   checkPhase = ''
16     ${python.interpreter} test_futures.py
17   '';
19   doCheck = !stdenv.isDarwin;
21   meta = with lib; {
22     description = "Backport of the concurrent.futures package from Python 3.2";
23     homepage = "https://github.com/agronholm/pythonfutures";
24     license = licenses.bsd2;
25     maintainers = with maintainers; [  ];
26   };