pythonPackages.tflearn: 0.2.1 -> 0.3.2 (#46102)
This commit is contained in:
parent
5d2d80d1cf
commit
a9a380b259
24
pkgs/development/python-modules/tflearn/default.nix
Normal file
24
pkgs/development/python-modules/tflearn/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
@ -16809,22 +16809,7 @@ EOF
|
|||||||
cudaSupport = true;
|
cudaSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
tflearn = buildPythonPackage rec {
|
tflearn = callPackage ../development/python-modules/tflearn { };
|
||||||
name = "tflearn-0.2.1";
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Deep learning library featuring a higher-level API for TensorFlow";
|
|
||||||
homepage = "https://github.com/tflearn/tflearn";
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ scipy h5py pillow tensorflow ];
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/t/tflearn/${name}.tar.gz";
|
|
||||||
sha256 = "1n884c4j35409id2bncyj5fvmmfpdqj3pk6wrv0s1znnvs0lkii0";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
simpleai = buildPythonPackage rec {
|
simpleai = buildPythonPackage rec {
|
||||||
version = "0.7.11";
|
version = "0.7.11";
|
||||||
|
Loading…
Reference in New Issue
Block a user