summary refs log tree commit diff
path: root/pkgs/development/python-modules/lasagne/default.nix
blob: 5db149708ff310775108414542ac7d45c57a1a11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, Theano
, isPy3k
}:

buildPythonPackage rec {
  pname = "Lasagne";
  version = "0.1";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0cqj86rdm6c7y5vq3i13qy76fg5xi3yjp4r0hpqy8hvynv54wqrw";
  };

  propagatedBuildInputs = [ numpy Theano ];

  # there are no tests
  doCheck = false;

  meta = with lib; {
    description = "Lightweight library to build and train neural networks in Theano";
    homepage = "https://github.com/Lasagne/Lasagne";
    maintainers = with maintainers; [ NikolaMandic ];
    license = licenses.mit;
  };

}