nixpkgs/pkgs/development/python-modules/sane/default.nix
2020-12-05 13:17:18 +02:00

28 lines
548 B
Nix

{ 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 ];
};
}