Skip to content

Commit

Permalink
bcrypt: add required dependency on six
Browse files Browse the repository at this point in the history
(cherry picked from commit 669f581)
  • Loading branch information
aneeshusa authored and FRidh committed Aug 7, 2017
1 parent 8f17e41 commit c40b85d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/bcrypt.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, isPyPy, fetchurl
, cffi, pycparser, mock, pytest, py }:
, cffi, pycparser, mock, pytest, py, six }:

with stdenv.lib;

Expand All @@ -12,7 +12,7 @@ buildPythonPackage rec {
sha256 = "1al54xafv1aharpb22yv5rjjc63fm60z3pn2shbiq48ah9f1fvil";
};
buildInputs = [ pycparser mock pytest py ];
propagatedBuildInputs = optional (!isPyPy) cffi;
propagatedBuildInputs = [ six ] ++ optional (!isPyPy) cffi;

meta = {
maintainers = with maintainers; [ domenkozar ];
Expand Down

0 comments on commit c40b85d

Please sign in to comment.