depot/third_party/nixpkgs/pkgs/development/python-modules/pyro-api/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

28 lines
597 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
version = "0.1.2";
format = "setuptools";
pname = "pyro-api";
src = fetchPypi {
inherit version pname;
sha256 = "a1b900d9580aa1c2fab3b123ab7ff33413744da7c5f440bd4aadc4d40d14d920";
};
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 ];
};
}