Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / arrayqueues / default.nix
blob3add43b6509af3dcbcd3c47522aac2674762f67d
1 { lib, buildPythonPackage, fetchPypi, isPy3k
2 , numpy
3 }:
5 buildPythonPackage rec {
6   pname = "arrayqueues";
7   version = "1.4.1";
8   disabled = !isPy3k;
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-7I+5BQO/gsvTREDkBfxrMblw3JPfY48S4KI4PCGPtFY=";
13   };
15   propagatedBuildInputs = [
16     numpy
17   ];
19   meta = {
20     homepage = "https://github.com/portugueslab/arrayqueues";
21     description = "Multiprocessing queues for numpy arrays using shared memory";
22     license = lib.licenses.mit;
23     maintainers = with lib.maintainers; [ tbenst ];
24   };