uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
23
pkgs/development/python-modules/avro-python3/default.nix
Normal file
23
pkgs/development/python-modules/avro-python3/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy3k, pycodestyle, isort }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "avro-python3";
|
||||
version = "1.10.2";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3b63f24e6b04368c3e4a6f923f484be0230d821aad65ac36108edbff29e9aaab";
|
||||
};
|
||||
|
||||
buildInputs = [ pycodestyle isort ];
|
||||
doCheck = false; # No such file or directory: './run_tests.py
|
||||
|
||||
meta = with lib; {
|
||||
description = "A serialization and RPC framework";
|
||||
homepage = "https://pypi.python.org/pypi/avro-python3/";
|
||||
license = licenses.asl20;
|
||||
|
||||
maintainers = [ maintainers.shlevy maintainers.timma ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue