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
46
pkgs/development/python-modules/pyzmq/default.nix
Normal file
46
pkgs/development/python-modules/pyzmq/default.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, tornado
|
||||
, zeromq
|
||||
, py
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyzmq";
|
||||
version = "22.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
tornado
|
||||
];
|
||||
buildInputs = [ zeromq ];
|
||||
propagatedBuildInputs = [ py ];
|
||||
|
||||
# failing tests
|
||||
disabledTests = [
|
||||
"test_socket" # hangs
|
||||
"test_current"
|
||||
"test_instance"
|
||||
"test_callable_check"
|
||||
"test_on_recv_basic"
|
||||
"test_on_recv_wake"
|
||||
"test_monitor" # https://github.com/zeromq/pyzmq/issues/1272
|
||||
"test_cython"
|
||||
"test_asyncio" # hangs
|
||||
"test_mockable" # fails
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"$out/${python.sitePackages}/zmq/tests/" # Folder with tests
|
||||
];
|
||||
|
||||
# Some of the tests use localhost networking.
|
||||
__darwinAllowLocalNetworking = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue