Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / sharedmem / default.nix
blob942e272229a7fec2abdbde05223caa4bdbaeb5b1
1 { buildPythonPackage, fetchPypi, lib, numpy }:
3 buildPythonPackage rec {
5   pname = "sharedmem";
6   version = "0.3.8";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "c654a6bee2e2f35c82e6cc8b6c262fcabd378f5ba11ac9ef71530f8dabb8e2f7";
11   };
13   propagatedBuildInputs = [ numpy ];
15   meta = {
16     homepage = "http://rainwoodman.github.io/sharedmem/";
17     description = "Easier parallel programming on shared memory computers";
18     maintainers = with lib.maintainers; [ edwtjo ];
19     license = lib.licenses.gpl3;
20   };