lol

python3Packages.wrapio: 1.0.0 -> 2.0.0

+5 -2
+5 -2
pkgs/development/python-modules/wrapio/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , pythonOlder 3 4 , fetchPypi 4 5 }: 5 6 6 7 buildPythonPackage rec { 7 8 pname = "wrapio"; 8 - version = "1.0.0"; 9 + version = "2.0.0"; 10 + 11 + disabled = pythonOlder "3.5"; 9 12 10 13 src = fetchPypi { 11 14 inherit pname version; 12 - sha256 = "sha256-JWcPsqZy1wM6/mbU3H0W3EkpLg0wrEUUg3pT/QrL+rE="; 15 + sha256 = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg="; 13 16 }; 14 17 15 18 doCheck = false;