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

22 lines
526 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi, lib, numpy }:
buildPythonPackage rec {
pname = "sharedmem";
2019-10-16 10:43:15 +01:00
version = "0.3.7";
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:15 +01:00
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;
};
}