depot/third_party/nixpkgs/pkgs/development/python-modules/sane/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

27 lines
567 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
sane-backends,
}:
buildPythonPackage rec {
pname = "sane";
version = "2.9.1";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "python-sane";
sha256 = "JAmOuDxujhsBEm5q16WwR5wHsBPF0iBQm1VYkv5JJd4=";
};
buildInputs = [ sane-backends ];
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 ];
};
}