aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyro-api/default.nix
blob: 78804941532a5fbd7f0266f59b1aa25c99359e8c (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.1";
  pname = "pyro-api";

  src = fetchPypi {
    inherit version pname;
    sha256 = "0rhd7p61pf2vvflbdixp7sygblvvl9qbqavxj27910lr79vl4fdz";
  };

  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 ];
  };
}