1{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
2, numpy
3}:
4
5buildPythonPackage rec {
6 pname = "arrayqueues";
7 version = "1.2.0b0";
8 disabled = !isPy3k;
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1gvrxb2rw0dk469wq5azylar7hhanfp07gl5mc6ajdbgz9gsd6ln";
13 };
14
15 propagatedBuildInputs = [
16 numpy
17 ];
18
19 meta = {
20 homepage = "https://github.com/portugueslab/arrayqueues";
21 description = "Multiprocessing queues for numpy arrays using shared memory";
22 license = lib.licenses.mit;
23 maintainers = with lib.maintainers; [ tbenst ];
24 };
25}