python3packages.arrayqueues: init at 1.2.0b0
This commit is contained in:
parent
a991de49f2
commit
51eff7ac8d
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -179,6 +179,8 @@ in {
|
||||||
|
|
||||||
apprise = callPackage ../development/python-modules/apprise { };
|
apprise = callPackage ../development/python-modules/apprise { };
|
||||||
|
|
||||||
|
arrayqueues = callPackage ../development/python-modules/arrayqueues { };
|
||||||
|
|
||||||
aresponses = callPackage ../development/python-modules/aresponses { };
|
aresponses = callPackage ../development/python-modules/aresponses { };
|
||||||
|
|
||||||
argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };
|
argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };
|
||||||
|
|
Loading…
Reference in New Issue