Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 526 B view raw
1{ buildPythonPackage, fetchPypi, lib, numpy }: 2 3buildPythonPackage rec { 4 5 pname = "sharedmem"; 6 version = "0.3.6"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "c351ab3f6a4fe9fe0c692ab6a8c88013e625845b31a168ff12d16254ed4154d5"; 11 }; 12 13 propagatedBuildInputs = [ numpy ]; 14 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 }; 21}