Python: many package updates

Did not test all packages. Likely we'll have some breakage.
This commit is contained in:
Frederik Rietdijk
2017-05-27 14:24:47 +02:00
parent 4cbd5e4141
commit 6b999f3c42
63 changed files with 129 additions and 137 deletions

View File

@@ -4,13 +4,13 @@
with stdenv.lib;
buildPythonPackage rec {
version = "3.1.2";
version = "3.1.3";
pname = "bcrypt";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/b/bcrypt/${name}.tar.gz";
sha256 = "1al54xafv1aharpb22yv5rjjc63fm60z3pn2shbiq48ah9f1fvil";
sha256 = "6645c8d0ad845308de3eb9be98b6fd22a46ec5412bfc664a423e411cdd8f5488";
};
buildInputs = [ pycparser mock pytest py ];
propagatedBuildInputs = [ six ] ++ optional (!isPyPy) cffi;