linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyro-api / default.nix
blobaaf4571900b7299768f0b5682e2750ca55d37075
1 { buildPythonPackage, fetchPypi, lib }:
3 buildPythonPackage rec {
4   version = "0.1.2";
5   pname = "pyro-api";
7   src = fetchPypi {
8     inherit version pname;
9     sha256 = "a1b900d9580aa1c2fab3b123ab7ff33413744da7c5f440bd4aadc4d40d14d920";
10   };
12   pythonImportsCheck = [ "pyroapi" ];
14   # tests require pyro-ppl which depends on this package
15   doCheck = false;
17   meta = {
18     description = "Generic API for dispatch to Pyro backends.";
19     homepage = "http://pyro.ai";
20     license = lib.licenses.mit;
21     maintainers = with lib.maintainers; [ georgewhewell ];
22   };