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
115
pkgs/development/python-modules/autobahn/default.nix
Normal file
115
pkgs/development/python-modules/autobahn/default.nix
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, attrs
|
||||
, argon2-cffi
|
||||
, base58
|
||||
, cbor2
|
||||
, cffi
|
||||
, click
|
||||
, cryptography
|
||||
, ecdsa
|
||||
, eth-abi
|
||||
, eth-account
|
||||
, flatbuffers
|
||||
, jinja2
|
||||
, hkdf
|
||||
, hyperlink
|
||||
, mnemonic
|
||||
, mock
|
||||
, msgpack
|
||||
, passlib
|
||||
, py-ecc
|
||||
, py-eth-sig-utils
|
||||
, py-multihash
|
||||
, py-ubjson
|
||||
, pynacl
|
||||
, pygobject3
|
||||
, pyopenssl
|
||||
, qrcode
|
||||
, pytest-asyncio
|
||||
, python-snappy
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
# , pytrie
|
||||
, rlp
|
||||
, service-identity
|
||||
, spake2
|
||||
, twisted
|
||||
, txaio
|
||||
, ujson
|
||||
# , web3
|
||||
# , wsaccel
|
||||
# , xbr
|
||||
, yapf
|
||||
# , zlmdb
|
||||
, zope_interface
|
||||
}@args:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "autobahn";
|
||||
version = "22.5.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-NKpVabC0QZ+MJ3eSxgDcJRjEkwkox04iee+LiNi4o+o=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "pytest>=2.8.6,<3.3.0" "pytest"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
hyperlink
|
||||
pynacl
|
||||
txaio
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
mock
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
# FIXME: remove the following dependencies when web3 gets added
|
||||
eth-account
|
||||
] ++ passthru.optional-dependencies.scram
|
||||
++ passthru.optional-dependencies.serialization
|
||||
++ passthru.optional-dependencies.xbr;
|
||||
|
||||
preCheck = ''
|
||||
# Run asyncio tests (requires twisted)
|
||||
export USE_ASYNCIO=1
|
||||
'';
|
||||
|
||||
pytestFlagsArray = [
|
||||
"--pyargs autobahn"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"autobahn"
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = rec {
|
||||
all = accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui ++ xbr;
|
||||
accelerate = [ /* wsaccel */ ];
|
||||
compress = [ python-snappy ];
|
||||
encryption = [ pynacl pyopenssl qrcode /* pytrie */ service-identity ];
|
||||
nvx = [ cffi ];
|
||||
scram = [ argon2-cffi cffi passlib ];
|
||||
serialization = [ cbor2 flatbuffers msgpack ujson py-ubjson ];
|
||||
twisted = [ attrs args.twisted zope_interface ];
|
||||
ui = [ pygobject3 ];
|
||||
xbr = [ base58 cbor2 click ecdsa eth-abi jinja2 hkdf mnemonic py-ecc py-eth-sig-utils py-multihash rlp spake2 twisted /* web3 xbr */ yapf /* zlmdb */ ];
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "WebSocket and WAMP in Python for Twisted and asyncio";
|
||||
homepage = "https://crossbar.io/autobahn";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue