diff options
Diffstat (limited to 'pkgs/development/python-modules/avro-python3/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/avro-python3/default.nix | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/avro-python3/default.nix b/pkgs/development/python-modules/avro-python3/default.nix index 114ff98326f8..921803ce1351 100644 --- a/pkgs/development/python-modules/avro-python3/default.nix +++ b/pkgs/development/python-modules/avro-python3/default.nix @@ -1,4 +1,11 @@ -{ lib, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }: +{ + lib, + buildPythonPackage, + fetchPypi, + isPy3k, + pycodestyle, + isort, +}: buildPythonPackage rec { pname = "avro-python3"; @@ -11,8 +18,11 @@ buildPythonPackage rec { sha256 = "3b63f24e6b04368c3e4a6f923f484be0230d821aad65ac36108edbff29e9aaab"; }; - buildInputs = [ pycodestyle isort ]; - doCheck = false; # No such file or directory: './run_tests.py + buildInputs = [ + pycodestyle + isort + ]; + doCheck = false; # No such file or directory: './run_tests.py meta = with lib; { description = "A serialization and RPC framework"; @@ -20,6 +30,9 @@ buildPythonPackage rec { homepage = "https://pypi.python.org/pypi/avro-python3/"; license = licenses.asl20; - maintainers = [ maintainers.shlevy maintainers.timma ]; + maintainers = [ + maintainers.shlevy + maintainers.timma + ]; }; } |
