2019-06-16 20:59:06 +01:00
{ stdenv , fetchPypi , buildPythonPackage
2019-02-28 10:57:08 +00:00
, numpy
, absl-py
, mock
} :
buildPythonPackage rec {
pname = " t e n s o r f l o w - e s t i m a t o r " ;
2019-10-07 09:14:16 +01:00
# This is effectively 1.15.0. Upstream tagged 1.15.0 by mistake before actually updating the version in setup.py, which is why this tag is called 1.15.1.
version = " 1 . 1 5 . 1 " ;
2019-02-28 10:57:08 +00:00
format = " w h e e l " ;
src = fetchPypi {
pname = " t e n s o r f l o w _ e s t i m a t o r " ;
inherit version format ;
2019-10-07 09:14:16 +01:00
sha256 = " 1 f c 6 1 w m c 0 w 2 2 f r s 7 9 j 2 x 4 g 6 w n v 5 g 2 1 x c 6 r i x 1 g 4 b s v y 9 q f v v y l w 8 " ;
2019-02-28 10:57:08 +00:00
} ;
propagatedBuildInputs = [ mock numpy absl-py ] ;
meta = with stdenv . lib ; {
description = " T e n s o r F l o w E s t i m a t o r i s a h i g h - l e v e l A P I t h a t e n c a p s u l a t e s m o d e l t r a i n i n g , e v a l u a t i o n , p r e d i c t i o n , a n d e x p o r t i n g . " ;
homepage = http://tensorflow.org ;
license = licenses . asl20 ;
maintainers = with maintainers ; [ jyp ] ;
} ;
}