2020-11-19 18:38:33 +00:00
|
|
|
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-11-29 14:04:38 +00:00
|
|
|
version = "0.1.2";
|
2020-11-19 18:38:33 +00:00
|
|
|
pname = "pyro-api";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version pname;
|
2020-11-29 14:04:38 +00:00
|
|
|
sha256 = "a1b900d9580aa1c2fab3b123ab7ff33413744da7c5f440bd4aadc4d40d14d920";
|
2020-11-19 18:38:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "pyroapi" ];
|
|
|
|
|
|
|
|
# tests require pyro-ppl which depends on this package
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Generic API for dispatch to Pyro backends.";
|
|
|
|
homepage = "http://pyro.ai";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ georgewhewell ];
|
|
|
|
};
|
|
|
|
}
|