PythonPackages.smmap: 0.8.2 -> 0.9.0

And enable Python3
This commit is contained in:
Samuel Rivas 2015-11-10 23:29:07 +01:00
parent 4b22a42a2f
commit fb93029dfe

View File

@ -17560,13 +17560,15 @@ let
}; };
smmap = buildPythonPackage rec { smmap = buildPythonPackage rec {
name = "smmap-0.8.2"; name = "smmap-0.9.0";
disabled = isPy3k || isPyPy; # next release will have py3k/pypy support disabled = isPyPy; # This fails the tests if built with pypy
meta.maintainers = with maintainers; [ mornfall ]; meta.maintainers = with maintainers; [ mornfall ];
buildInputs = with self; [ nosexcover ];
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/s/smmap/${name}.tar.gz"; url = "https://pypi.python.org/packages/source/s/smmap/${name}.tar.gz";
sha256 = "0vrdgr6npmajrv658fv8bij7zgm5jmz2yxkbv8kmbv25q1f9b8ny"; sha256 = "0qlx25f6n2n9ff37w9gg62f217fzj16xlbh0pkz0lpxxjys64aqf";
}; };
}; };