1{ buildPythonPackage, fetchPypi, lib, numpy }:
2
3buildPythonPackage rec {
4
5 pname = "sharedmem";
6 version = "0.3.7";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "483e414b8c5d03093a02baf548449f1d8426a88855556fa42102bba82b86b2a8";
11 };
12
13 propagatedBuildInputs = [ numpy ];
14
15 meta = {
16 homepage = "http://rainwoodman.github.io/sharedmem/";
17 description = "Easier parallel programming on shared memory computers";
18 maintainers = with lib.maintainers; [ edwtjo ];
19 license = lib.licenses.gpl3;
20 };
21}