mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
pythonPackages.sharedmem: init at 0.3.5
This commit is contained in:
parent
f9c4a74b73
commit
491a580716
21
pkgs/development/python-modules/sharedmem/default.nix
Normal file
21
pkgs/development/python-modules/sharedmem/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -12393,6 +12393,8 @@ in {
|
||||
|
||||
shapely = callPackage ../development/python-modules/shapely { };
|
||||
|
||||
sharedmem = callPackage ../development/python-modules/sharedmem { };
|
||||
|
||||
soco = callPackage ../development/python-modules/soco { };
|
||||
|
||||
sopel = buildPythonPackage rec {
|
||||
|
Loading…
Reference in New Issue
Block a user