mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / gradio-pdf / default.nix
blobd35698c9f77e9441ca7c5ab17ba2b2ab28ec6cf0
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.17";
15   pyproject = true;
17   src = fetchPypi {
18     pname = "gradio_pdf";
19     inherit version;
20     hash = "sha256-LoVcwE7eGcK5Nc6qKTnrnI+rNlsDbekhKUP+Fzq2SQ8=";
21   };
23   build-system = [
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 = {
40     description = "Python library for easily interacting with trained machine learning models";
41     homepage = "https://pypi.org/project/gradio-pdf/";
42     license = lib.licenses.asl20;
43     maintainers = with lib.maintainers; [ pbsds ];
44   };