02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
26 lines
586 B
Nix
26 lines
586 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "arrayqueues";
|
|
version = "1.4.1";
|
|
format = "setuptools";
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "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 ];
|
|
};
|
|
}
|