pythonPackages.runway-python: init at 0.3.2

This commit is contained in:
Pavol Rusnak 2019-07-31 23:31:10 +02:00
parent 509bf5d1cc
commit 166a5e0405
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, flask
, flask-cors
, numpy
, pillow
, gevent
, wget
, six
, colorcet
}:
buildPythonPackage rec {
pname = "runway-python";
version = "0.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "ef15c0df60cfe7ea26b070bbe2ba522d67d247b157c20f3f191fe545c17d0b85";
};
propagatedBuildInputs = [ flask flask-cors numpy pillow gevent wget six colorcet ];
# tests are not packaged in the released tarball
doCheck = false;
meta = {
description = "Helper library for creating Runway models";
homepage = https://github.com/runwayml/model-sdk;
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ prusnak ];
};
}

View file

@ -6114,6 +6114,8 @@ in {
webrtcvad = callPackage ../development/python-modules/webrtcvad { };
wget = callPackage ../development/python-modules/wget { };
runway-python = callPackage ../development/python-modules/runway-python { };
});
in fix' (extends overrides packages)