Skip to content

Commit

Permalink
python: typing: 3.5.3.0 -> 3.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz authored and FRidh committed Feb 3, 2018
1 parent e43f3be commit f065779
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 15 deletions.
29 changes: 29 additions & 0 deletions pkgs/development/python-modules/typing/default.nix
@@ -0,0 +1,29 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy3k, python }:

let
testDir = if isPy3k then "src" else "python2";

in buildPythonPackage rec {
pname = "typing";
version = "3.6.4";

src = fetchPypi {
inherit pname version;
sha256 = "d400a9344254803a2368533e4533a4200d21eb7b6b729c173bc38201a74db3f2";
};

# Error for Python3.6: ImportError: cannot import name 'ann_module'
# See https://github.com/python/typing/pull/280
doCheck = pythonOlder "3.6";

checkPhase = ''
cd ${testDir}
${python.interpreter} -m unittest discover
'';

meta = with lib; {
description = "Backport of typing module to Python versions older than 3.5";
homepage = https://docs.python.org/3/library/typing.html;
license = licenses.psfl;
};
}
16 changes: 1 addition & 15 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -15551,21 +15551,7 @@ in {
};
};

typing = buildPythonPackage rec {
name = "typing-${version}";
version = "3.5.3.0";

src = pkgs.fetchurl {
url = "mirror://pypi/t/typing/${name}.tar.gz";
sha256 = "08gz3grrh3vph5ib1w5x1ssnpzvj077x030lx63fxs4kwg3slbfa";
};

meta = {
description = "Backport of typing module to Python versions older than 3.5";
homepage = "https://docs.python.org/3.5/library/typing.html";
license = licenses.psfl;
};
};
typing = callPackage ../development/python-modules/typing { };

typeguard = callPackage ../development/python-modules/typeguard { };

Expand Down

0 comments on commit f065779

Please sign in to comment.