about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sharedmem/default.nix
blob: 9111fd971ca0e1a91673926c8488f7fd1f3e58d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildPythonPackage, fetchPypi, lib, numpy }:

buildPythonPackage rec {

  pname = "sharedmem";
  version = "0.3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "483e414b8c5d03093a02baf548449f1d8426a88855556fa42102bba82b86b2a8";
  };

  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;
  };
}