evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / arrayqueues / default.nix
bloba2bd69bf3a19ab76efed3e91a2907f4c4fe7903e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPy3k,
6   numpy,
7 }:
9 buildPythonPackage rec {
10   pname = "arrayqueues";
11   version = "1.4.1";
12   format = "setuptools";
13   disabled = !isPy3k;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-7I+5BQO/gsvTREDkBfxrMblw3JPfY48S4KI4PCGPtFY=";
18   };
20   propagatedBuildInputs = [ numpy ];
22   meta = {
23     homepage = "https://github.com/portugueslab/arrayqueues";
24     description = "Multiprocessing queues for numpy arrays using shared memory";
25     license = lib.licenses.mit;
26     maintainers = with lib.maintainers; [ tbenst ];
27   };