Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / arrayqueues / default.nix
blob48207c8e659f67e7c2154f0a7279bfe0caf37ec5
1 { lib, buildPythonPackage, fetchPypi, isPy3k
2 , numpy
3 }:
5 buildPythonPackage rec {
6   pname = "arrayqueues";
7   version = "1.4.1";
8   format = "setuptools";
9   disabled = !isPy3k;
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-7I+5BQO/gsvTREDkBfxrMblw3JPfY48S4KI4PCGPtFY=";
14   };
16   propagatedBuildInputs = [
17     numpy
18   ];
20   meta = {
21     homepage = "https://github.com/portugueslab/arrayqueues";
22     description = "Multiprocessing queues for numpy arrays using shared memory";
23     license = lib.licenses.mit;
24     maintainers = with lib.maintainers; [ tbenst ];
25   };