Files
nixpkgs/pkgs/development/python-modules/sharedmem/default.nix
T

22 lines
528 B
Nix
Raw Normal View History

2018-09-24 16:59:23 +02:00
{ buildPythonPackage, fetchPypi, lib, numpy }:
buildPythonPackage rec {
pname = "sharedmem";
2020-10-15 21:11:26 +00:00
version = "0.3.8";
2018-09-24 16:59:23 +02:00
src = fetchPypi {
inherit pname version;
2020-10-15 21:11:26 +00:00
sha256 = "c654a6bee2e2f35c82e6cc8b6c262fcabd378f5ba11ac9ef71530f8dabb8e2f7";
2018-09-24 16:59:23 +02:00
};
propagatedBuildInputs = [ numpy ];
meta = {
homepage = "http://rainwoodman.github.io/sharedmem/";
2018-09-24 16:59:23 +02:00
description = "Easier parallel programming on shared memory computers";
maintainers = with lib.maintainers; [ edwtjo ];
license = lib.licenses.gpl3;
};
}