pythonPackages.thrift: fix build

Adds missing `six` dependency to the build inputs.

See also https://hydra.nixos.org/build/86094652
This commit is contained in:
Maximilian Bosch 2019-01-10 02:42:21 +01:00
parent 6b81768297
commit 53380970e7
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -12,6 +13,8 @@ buildPythonPackage rec {
sha256 = "7d59ac4fdcb2c58037ebd4a9da5f9a49e3e034bf75b3f26d9fe48ba3d8806e6b"; sha256 = "7d59ac4fdcb2c58037ebd4a9da5f9a49e3e034bf75b3f26d9fe48ba3d8806e6b";
}; };
propagatedBuildInputs = [ six ];
# No tests. Breaks when not disabling. # No tests. Breaks when not disabling.
doCheck = false; doCheck = false;