1{ lib
2, buildPythonPackage
3, fetchPypi
4, numpy
5, Theano
6, isPy3k
7}:
8
9buildPythonPackage rec {
10 pname = "Lasagne";
11 version = "0.1";
12 disabled = isPy3k;
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0cqj86rdm6c7y5vq3i13qy76fg5xi3yjp4r0hpqy8hvynv54wqrw";
17 };
18
19 propagatedBuildInputs = [ numpy Theano ];
20
21 # there are no tests
22 doCheck = false;
23
24 meta = with lib; {
25 description = "Lightweight library to build and train neural networks in Theano";
26 homepage = "https://github.com/Lasagne/Lasagne";
27 maintainers = with maintainers; [ NikolaMandic ];
28 license = licenses.mit;
29 };
30
31}