summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/sharedmem/default.nix
blob: 0615feb911dfbe0773cc94a311e9d720eb463089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  buildPythonPackage,
  fetchPypi,
  lib,
  numpy,
}:

buildPythonPackage rec {

  pname = "sharedmem";
  version = "0.3.8";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c654a6bee2e2f35c82e6cc8b6c262fcabd378f5ba11ac9ef71530f8dabb8e2f7";
  };

  propagatedBuildInputs = [ numpy ];

  meta = {
    homepage = "http://rainwoodman.github.io/sharedmem/";
    description = "Easier parallel programming on shared memory computers";
    maintainers = with lib.maintainers; [ edwtjo ];
    license = lib.licenses.gpl3;
  };
}