1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #15618 from NikolaMandic/lasagne

Lasagne: init at 0.1
This commit is contained in:
Frederik Rietdijk 2016-05-24 09:24:30 +02:00
commit e50e376b2b

View file

@ -27274,6 +27274,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";