linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / arrayqueues / default.nix
blob79a44ad42cdd8838134a06236b38c25285916fc2
1 { lib, pkgs, buildPythonPackage, fetchPypi, isPy3k
2 , numpy
3 }:
5 buildPythonPackage rec {
6   pname = "arrayqueues";
7   version = "1.3.1";
8   disabled = !isPy3k;
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "a955df768e39d459de28c7ea10ee02f67b1c70996cfa229846ab98df77a6fb69";
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   };