diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 40d9da652485..473b7fddeacc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";