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
31
pkgs/development/python-modules/janus/default.nix
Normal file
31
pkgs/development/python-modules/janus/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, pythonOlder, pytest-asyncio
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "janus";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "df976f2cdcfb034b147a2d51edfc34ff6bfb12d4e2643d3ad0e10de058cb1612";
|
||||
};
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
checkInputs = [ pytest-asyncio pytestCheckHook ];
|
||||
|
||||
# also fails upstream: https://github.com/aio-libs/janus/pull/258
|
||||
disabledTests = [ "test_format" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Mixed sync-async queue";
|
||||
homepage = "https://github.com/aio-libs/janus";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.simonchatts ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue