pythonPackages.runway-python: 0.5.7 -> 0.5.9

This commit is contained in:
Pavol Rusnak 2020-01-19 14:14:23 +01:00 committed by Jon
parent 6557e9a0e7
commit e86c8b69d5

View File

@ -2,29 +2,38 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, flask , flask
, flask-compress
, flask-cors , flask-cors
, flask-sockets
, numpy , numpy
, scipy
, pillow , pillow
, gevent , gevent
, wget , wget
, six , six
, colorcet , colorcet
, unidecode
, urllib3
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "runway-python"; pname = "runway-python";
version = "0.5.7"; version = "0.5.9";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "06e0138cc4cf2ddb7304502f5c7b53269ce73679c5784c8d6b423db04d179c18"; sha256 = "1d75c44008275213034977c75bc2dc6f419e7f11d087984e3faea1e0cf6da69d";
}; };
propagatedBuildInputs = [ flask flask-cors numpy pillow gevent wget six colorcet ]; propagatedBuildInputs = [ flask flask-compress flask-cors flask-sockets numpy scipy pillow gevent wget six colorcet unidecode urllib3 ];
# tests are not packaged in the released tarball # tests are not packaged in the released tarball
doCheck = false; doCheck = false;
pythonImportsCheck = [
"runway"
];
meta = { meta = {
description = "Helper library for creating Runway models"; description = "Helper library for creating Runway models";
homepage = https://github.com/runwayml/model-sdk; homepage = https://github.com/runwayml/model-sdk;