about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyro-api/default.nix
blob: c5f2ea37e0c800fb063bb58f8e9977d3e2b97088 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  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 ];
  };
}