Merge pull request #15618 from NikolaMandic/lasagne

Lasagne: init at 0.1

+26
+26
pkgs/top-level/python-packages.nix
··· 27274 27274 }; 27275 27275 }; 27276 27276 27277 + Lasagne = buildPythonPackage rec { 27278 + name = "Lasagne-${version}"; 27279 + version = "0.1"; 27280 + disabled = isPy3k; 27281 + 27282 + src = pkgs.fetchurl { 27283 + url = "mirror://pypi/l/lasagne/${name}.tar.gz"; 27284 + sha256 = "0cqj86rdm6c7y5vq3i13qy76fg5xi3yjp4r0hpqy8hvynv54wqrw"; 27285 + }; 27286 + 27287 + propagatedBuildInputs = with self; [ 27288 + numpy 27289 + Theano 27290 + ]; 27291 + 27292 + # there are no tests 27293 + doCheck = false; 27294 + 27295 + meta = { 27296 + description = "Lightweight library to build and train neural networks in Theano"; 27297 + homepage = "https://github.com/Lasagne/Lasagne"; 27298 + maintainers = with maintainers; [ NikolaMandic ]; 27299 + license = licenses.mit; 27300 + }; 27301 + }; 27302 + 27277 27303 sigtools = buildPythonPackage rec { 27278 27304 name = "sigtools-${version}"; 27279 27305 version = "1.1a3";