python.pkgs: updates

This commit is contained in:
Frederik Rietdijk
2017-10-25 20:04:35 +02:00
parent b601d87cd6
commit 7ce848309e
133 changed files with 366 additions and 294 deletions

View File

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