mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
f3282c8d1e
* treewide: remove unused variables * making ofborg happy
25 lines
586 B
Nix
25 lines
586 B
Nix
{ lib, fetchPypi, buildPythonPackage, pytest, scipy, h5py
|
|
, pillow, tensorflow }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tflearn";
|
|
version = "0.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "034lvbslcivyj64r4w6xmr90ckmyxmrnkka9kal50x4175h02n1z";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ scipy h5py pillow tensorflow ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Deep learning library featuring a higher-level API for TensorFlow";
|
|
homepage = "https://github.com/tflearn/tflearn";
|
|
license = licenses.mit;
|
|
};
|
|
}
|