28 lines
588 B
Nix
28 lines
588 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|