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
32
pkgs/development/python-modules/gipc/default.nix
Normal file
32
pkgs/development/python-modules/gipc/default.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, gevent
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gipc";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-P8d2GIxFAAHeXjXgIxKGwahiH1TW/9fE+V0f9Ra54wo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ gevent ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "gevent-cooperative child processes and IPC";
|
||||
longDescription = ''
|
||||
Usage of Python's multiprocessing package in a gevent-powered
|
||||
application may raise problems and most likely breaks the application
|
||||
in various subtle ways. gipc (pronunciation "gipsy") is developed with
|
||||
the motivation to solve many of these issues transparently. With gipc,
|
||||
multiprocessing. Process-based child processes can safely be created
|
||||
anywhere within your gevent-powered application.
|
||||
'';
|
||||
homepage = "http://gehrcke.de/gipc";
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue