depot/third_party/nixpkgs/pkgs/development/python-modules/sharedmem/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
528 B
Nix

{ buildPythonPackage, fetchPypi, lib, numpy }:
buildPythonPackage rec {
pname = "sharedmem";
version = "0.3.7";
src = fetchPypi {
inherit pname version;
sha256 = "483e414b8c5d03093a02baf548449f1d8426a88855556fa42102bba82b86b2a8";
};
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;
};
}