aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pyro-api/default.nix
blob: aaf4571900b7299768f0b5682e2750ca55d37075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPythonPackage, fetchPypi, lib }:

buildPythonPackage rec {
  version = "0.1.2";
  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 ];
  };
}