mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
26 lines
623 B
Nix
26 lines
623 B
Nix
{ lib, fetchPypi, buildPythonPackage, pytest, scipy, h5py
|
|
, pillow, tensorflow }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tflearn";
|
|
version = "0.5.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "818aa57667693810415dc203ba3f75f1541e931a8dc30b6e8b21563541a70388";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|