forked from mirrors/nixpkgs
Lasagne: init at 0.1
This commit is contained in:
parent
25f07b12cf
commit
4d1accf694
|
@ -27251,6 +27251,32 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
Lasagne = buildPythonPackage rec {
|
||||
name = "Lasagne-${version}";
|
||||
version = "0.1";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/l/lasagne/${name}.tar.gz";
|
||||
sha256 = "0cqj86rdm6c7y5vq3i13qy76fg5xi3yjp4r0hpqy8hvynv54wqrw";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [
|
||||
numpy
|
||||
Theano
|
||||
];
|
||||
|
||||
# there are no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Lightweight library to build and train neural networks in Theano";
|
||||
homepage = "https://github.com/Lasagne/Lasagne";
|
||||
maintainers = with maintainers; [ NikolaMandic ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
sigtools = buildPythonPackage rec {
|
||||
name = "sigtools-${version}";
|
||||
version = "1.1a3";
|
||||
|
|
Loading…
Reference in a new issue