mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-26 10:30:32 +00:00
bcrypt: add required dependency on six
(cherry picked from commit 669f5819e2)
This commit is contained in:
committed by
Frederik Rietdijk
parent
8f17e414be
commit
c40b85d4fd
@@ -1,5 +1,5 @@
|
||||
{ stdenv, buildPythonPackage, isPyPy, fetchurl
|
||||
, cffi, pycparser, mock, pytest, py }:
|
||||
, cffi, pycparser, mock, pytest, py, six }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
@@ -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 ];
|
||||
|
||||
Reference in New Issue
Block a user