33 lines
722 B
Nix
33 lines
722 B
Nix
with import <nixpkgs> {};
|
|
|
|
let
|
|
|
|
pulp = import ./pulp.nix;
|
|
|
|
in
|
|
|
|
python27Packages.buildPythonPackage rec {
|
|
version = "bdbc5fc0a8dfc45683489c6835c3c00cb27c0427";
|
|
name = "firedrake-COFFEE-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coneoproject";
|
|
repo = "COFFEE";
|
|
rev = "${version}";
|
|
sha256 = "0b4jgnz05n6lapcnljpnq1p5z6j4bbdnq0mm3c53gzx4r47rkgyk";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
python27Packages.networkx
|
|
python27Packages.numpy
|
|
python27Packages.six
|
|
pulp
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/coneoproject/COFFEE";
|
|
description = "A COmpiler For Fast Expression Evaluation (COFFEE).";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|