diff options
| author | Clemens Fruhwirth <clemens@endorphin.org> | 2020-10-02 17:19:01 +0200 |
|---|---|---|
| committer | Jon <jonringer@users.noreply.github.com> | 2020-10-06 10:06:57 -0700 |
| commit | 063c756b33f69a787d6fda77bb293ca022d5d922 (patch) | |
| tree | 17ff01b001fb5b2a7dc1f886bc48b9a43a221a6e /pkgs/development/python-modules/avro-python3 | |
| parent | aabdb540a4a06c5ab4b4cb8b8e806897d8ad15cf (diff) | |
python3Packages.avro-python3: Add missing dependencies
Diffstat (limited to 'pkgs/development/python-modules/avro-python3')
| -rw-r--r-- | pkgs/development/python-modules/avro-python3/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/avro-python3/default.nix b/pkgs/development/python-modules/avro-python3/default.nix index e6bd5acbbb89..332bcf4d4d13 100644 --- a/pkgs/development/python-modules/avro-python3/default.nix +++ b/pkgs/development/python-modules/avro-python3/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k }: +{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }: buildPythonPackage rec { pname = "avro-python3"; @@ -10,6 +10,7 @@ buildPythonPackage rec { sha256 = "a455c215540b1fceb1823e2a918e94959b54cb363307c97869aa46b5b55bde05"; }; + buildInputs = [ pycodestyle isort ]; doCheck = false; # No such file or directory: './run_tests.py meta = with lib; { |
