pythonPackages.avro: fix build
This commit is contained in:
parent
625653c36d
commit
c3597a127a
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "avro";
|
pname = "avro";
|
||||||
|
@ -10,6 +10,9 @@ buildPythonPackage rec {
|
||||||
sha256 = "4487f0e91d0d44142bd08b3c6da57073b720c3effb02eeb4e2e822804964c56b";
|
sha256 = "4487f0e91d0d44142bd08b3c6da57073b720c3effb02eeb4e2e822804964c56b";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pycodestyle ];
|
||||||
|
propagatedBuildInputs = [ isort ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A serialization and RPC framework";
|
description = "A serialization and RPC framework";
|
||||||
homepage = "https://pypi.python.org/pypi/avro/";
|
homepage = "https://pypi.python.org/pypi/avro/";
|
||||||
|
|
Loading…
Reference in New Issue