summary refs log tree commit diff
path: root/pkgs/development/python-modules/sharedmem
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2018-09-24 16:59:23 +0200
committerEdward Tjörnhammar <ed@cflags.cc>2018-09-24 17:00:55 +0200
commit491a580716dbebe2728b19090e3625e19e899251 (patch)
tree5c7d2ccfc22c5c9bcf850987b61a9d72cbc89fcc /pkgs/development/python-modules/sharedmem
parentf9c4a74b73bedd619077cc40f63bf6b33e0406c3 (diff)
downloadnixpkgs-491a580716dbebe2728b19090e3625e19e899251.tar
nixpkgs-491a580716dbebe2728b19090e3625e19e899251.tar.gz
nixpkgs-491a580716dbebe2728b19090e3625e19e899251.tar.bz2
nixpkgs-491a580716dbebe2728b19090e3625e19e899251.tar.lz
nixpkgs-491a580716dbebe2728b19090e3625e19e899251.tar.xz
nixpkgs-491a580716dbebe2728b19090e3625e19e899251.tar.zst
nixpkgs-491a580716dbebe2728b19090e3625e19e899251.zip
pythonPackages.sharedmem: init at 0.3.5
Diffstat (limited to 'pkgs/development/python-modules/sharedmem')
-rw-r--r--pkgs/development/python-modules/sharedmem/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sharedmem/default.nix b/pkgs/development/python-modules/sharedmem/default.nix
new file mode 100644
index 00000000000..60c91b64109
--- /dev/null
+++ b/pkgs/development/python-modules/sharedmem/default.nix
@@ -0,0 +1,21 @@
+{ buildPythonPackage, fetchPypi, lib, numpy }:
+
+buildPythonPackage rec {
+
+  pname = "sharedmem";
+  version = "0.3.5";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1wr438m1jmcj6ccskzm6pchv6ldx7031h040adadjmkivz5rry41";
+  };
+
+  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;
+  };
+}