Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / tflearn / default.nix
blob91a92d6b8de45cea1731077dacbe5e3c4443d49b
1 { lib, fetchPypi, buildPythonPackage, pytest, scipy, h5py
2 , pillow, tensorflow }:
4 buildPythonPackage rec {
5   pname = "tflearn";
6   version = "0.5.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "818aa57667693810415dc203ba3f75f1541e931a8dc30b6e8b21563541a70388";
11   };
13   buildInputs = [ pytest ];
15   propagatedBuildInputs = [ scipy h5py pillow tensorflow ];
17   doCheck = false;
19   meta = with lib; {
20     description = "Deep learning library featuring a higher-level API for TensorFlow";
21     homepage    = "https://github.com/tflearn/tflearn";
22     license     = licenses.mit;
23   };