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