nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3packages.arrayqueues: init at 1.2.0b0

authored by

tbenst and committed by
Jon
51eff7ac a991de49

+27
+25
pkgs/development/python-modules/arrayqueues/default.nix
··· 1 + { lib, pkgs, buildPythonPackage, fetchPypi, isPy3k 2 + , numpy 3 + }: 4 + 5 + buildPythonPackage rec { 6 + pname = "arrayqueues"; 7 + version = "1.2.0b0"; 8 + disabled = !isPy3k; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "1gvrxb2rw0dk469wq5azylar7hhanfp07gl5mc6ajdbgz9gsd6ln"; 13 + }; 14 + 15 + propagatedBuildInputs = [ 16 + numpy 17 + ]; 18 + 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 + }; 25 + }
+2
pkgs/top-level/python-packages.nix
··· 179 179 180 180 apprise = callPackage ../development/python-modules/apprise { }; 181 181 182 + arrayqueues = callPackage ../development/python-modules/arrayqueues { }; 183 + 182 184 aresponses = callPackage ../development/python-modules/aresponses { }; 183 185 184 186 argon2_cffi = callPackage ../development/python-modules/argon2_cffi { };