biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / gradio-pdf / default.nix
blobabceb8b1c5c0b7a7592c31d3917de7ea07725791
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   hatch-fancy-pypi-readme,
6   hatch-requirements-txt,
7   hatchling,
8   gradio,
9   gradio-client,
12 buildPythonPackage rec {
13   pname = "gradio-pdf";
14   version = "0.0.15";
15   format = "pyproject";
17   src = fetchPypi {
18     pname = "gradio_pdf";
19     inherit version;
20     hash = "sha256-R+4CDJo84/+PUTTxoz9CsZlHUVsldgjufWsRkALrfN4=";
21   };
23   nativeBuildInputs = [
24     hatch-fancy-pypi-readme
25     hatch-requirements-txt
26     hatchling
27   ];
29   dependencies = [ gradio-client ];
31   buildInputs = [ gradio.sans-reverse-dependencies ];
32   disallowedReferences = [ gradio.sans-reverse-dependencies ];
34   pythonImportsCheck = [ "gradio_pdf" ];
36   # tested in `gradio`
37   doCheck = false;
39   meta = with lib; {
40     description = "Python library for easily interacting with trained machine learning models";
41     homepage = "https://pypi.org/project/gradio-pdf/";
42     license = licenses.asl20;
43     maintainers = with maintainers; [ pbsds ];
44   };