nixpkgs/pkgs/development/python-modules/runway-python/default.nix
2019-08-08 11:38:33 +02:00

35 lines
710 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, flask
, flask-cors
, numpy
, pillow
, gevent
, wget
, six
, colorcet
}:
buildPythonPackage rec {
pname = "runway-python";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "cd23550211aa8542d9c06516e25c32de3963fff50d0793d94def271a4e2b4514";
};
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 ];
};
}