mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
553 B
Nix
23 lines
553 B
Nix
{ buildPythonPackage, fetchPypi, lib, numpy }:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sharedmem";
|
|
version = "0.3.8";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c654a6bee2e2f35c82e6cc8b6c262fcabd378f5ba11ac9ef71530f8dabb8e2f7";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|