about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/sane/default.nix
blob: 2359ff0aa7feb1b00b185b1583c5aed15ab63252 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchPypi
, saneBackends
}:

buildPythonPackage rec {
  pname = "sane";
  version = "2.8.2";

  src = fetchPypi {
    inherit version;
    pname = "python-sane";
    sha256 = "0sri01h9sld6w7vgfhwp29n5w19g6idz01ba2giwnkd99k1y2iqg";
  };

  buildInputs = [
    saneBackends
  ];

  meta = with lib; {
    homepage = "https://github.com/python-pillow/Sane";
    description = "Python interface to the SANE scanner and frame grabber ";
    license = licenses.mit;
    maintainers = with maintainers; [ doronbehar ];
  };
}