3
0
Fork 0
forked from mirrors/nixpkgs

pybrain: init at 0.3.3

This commit is contained in:
NikolaMandic 2016-05-24 20:02:59 +00:00
parent c726773f26
commit 39126f01d3

View file

@ -27475,4 +27475,24 @@ in modules // {
maintainers = with maintainers; [ peterhoeg ];
};
};
pybrain = buildPythonPackage rec {
name = "pybrain-${version}";
version = "0.3.3";
src = pkgs.fetchurl {
url = "https://github.com/pybrain/pybrain/archive/${version}.tar.gz";
sha256 = "114m99vsrps2gjqfm3i3kxx4nibjhjdzphsy2bhrxa5q3h2q14dz";
};
propagatedBuildInputs = with self; [ scipy ];
meta = {
homepage = "http://pybrain.org/";
description = "Modular Machine Learning Library for Python";
license = licenses.bsd3;
maintainers = with maintainers; [ NikolaMandic ];
};
};
}