parse-type: 0.3.4 -> 0.4.2

This commit is contained in:
Alex Brandt 2018-03-07 11:03:01 -06:00
parent e39f948cb0
commit b8c3a16cd3

View File

@ -6,21 +6,13 @@
buildPythonPackage rec {
pname = "parse_type";
version = "0.3.4";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "3dd0b323bafcb8c25e000ce5589042a1c99cba9c3bec77b9f591e46bc9606147";
sha256 = "0g3b6gsdwnm8dpkh2vn34q6dzxm9gl908ggyzcv31n9xbp3vv5pm";
};
patches = [
(fetchpatch {
name = "python-3.5-tests-compat.patch";
url = "https://github.com/jenisys/parse_type/pull/4.patch";
sha256 = "1mmn2fxss6q3qhaydd4s4v8vjgvgkg41v1vcivrzdsvgsc3npg7m";
})
];
checkInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ parse six ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;