mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
596 B
Nix
25 lines
596 B
Nix
{ lib, fetchPypi, buildPythonPackage, fetchurl, 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;
|
|
};
|
|
}
|