pythonPackages.runway-python: init at 0.3.2
This commit is contained in:
parent
509bf5d1cc
commit
166a5e0405
2 changed files with 36 additions and 0 deletions
34
pkgs/development/python-modules/runway-python/default.nix
Normal file
34
pkgs/development/python-modules/runway-python/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue