mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
44 lines
872 B
Nix
44 lines
872 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, flask
|
|
, flask-compress
|
|
, flask-cors
|
|
, flask-sockets
|
|
, numpy
|
|
, scipy
|
|
, pillow
|
|
, gevent
|
|
, wget
|
|
, six
|
|
, colorcet
|
|
, unidecode
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "runway-python";
|
|
version = "0.5.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1d75c44008275213034977c75bc2dc6f419e7f11d087984e3faea1e0cf6da69d";
|
|
};
|
|
|
|
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
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"runway"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|