python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / pyro-api / default.nix
blobc5f2ea37e0c800fb063bb58f8e9977d3e2b97088
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
7 buildPythonPackage rec {
8   version = "0.1.2";
9   format = "setuptools";
10   pname = "pyro-api";
12   src = fetchPypi {
13     inherit version pname;
14     sha256 = "a1b900d9580aa1c2fab3b123ab7ff33413744da7c5f440bd4aadc4d40d14d920";
15   };
17   pythonImportsCheck = [ "pyroapi" ];
19   # tests require pyro-ppl which depends on this package
20   doCheck = false;
22   meta = {
23     description = "Generic API for dispatch to Pyro backends";
24     homepage = "http://pyro.ai";
25     license = lib.licenses.mit;
26     maintainers = with lib.maintainers; [ georgewhewell ];
27   };