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