python: mypy_extensions: 0.4.1 -> 0.4.2

This commit is contained in:
Frederik Rietdijk 2019-10-16 11:43:10 +02:00
parent cafcf56d97
commit 03f3b6d1f1

View File

@ -2,14 +2,14 @@
buildPythonPackage rec {
pname = "mypy_extensions";
version = "0.4.1";
version = "0.4.2";
# Tests not included in pip package.
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "04h8brrbbx151dfa2cvvlnxgmb5wa00mhd2z7nd20s8kyibfkq1p";
sha256 = "a161e3b917053de87dbe469987e173e49fb454eca10ef28b48b384538cc11458";
};
propagatedBuildInputs = if pythonOlder "3.5" then [ typing ] else [ ];