about summary refs log tree commit diff
path: root/pkgs/development/python-modules/arrayqueues/default.nix
blob: a2bd69bf3a19ab76efed3e91a2907f4c4fe7903e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
  numpy,
}:

buildPythonPackage rec {
  pname = "arrayqueues";
  version = "1.4.1";
  format = "setuptools";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-7I+5BQO/gsvTREDkBfxrMblw3JPfY48S4KI4PCGPtFY=";
  };

  propagatedBuildInputs = [ numpy ];

  meta = {
    homepage = "https://github.com/portugueslab/arrayqueues";
    description = "Multiprocessing queues for numpy arrays using shared memory";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ tbenst ];
  };
}