python3packages.arrayqueues: init at 1.2.0b0

This commit is contained in:
tbenst 2019-10-31 13:50:04 -07:00 committed by Jon
parent a991de49f2
commit 51eff7ac8d
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
, numpy
}:
buildPythonPackage rec {
pname = "arrayqueues";
version = "1.2.0b0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1gvrxb2rw0dk469wq5azylar7hhanfp07gl5mc6ajdbgz9gsd6ln";
};
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 ];
};
}

View File

@ -179,6 +179,8 @@ in {
apprise = callPackage ../development/python-modules/apprise { };
arrayqueues = callPackage ../development/python-modules/arrayqueues { };
aresponses = callPackage ../development/python-modules/aresponses { };
argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };