From 4d1accf694d39c42b7aaf5c5967843593b778594 Mon Sep 17 00:00:00 2001 From: NikolaMandic Date: Sun, 22 May 2016 13:39:35 +0000 Subject: [PATCH] Lasagne: init at 0.1 --- pkgs/top-level/python-packages.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 07f20189253d..ce10d7a837ce 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";