My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sane/default.nix

27 lines
542 B

{ lib
, buildPythonPackage
, fetchPypi
, sane-backends
}:
buildPythonPackage rec {
pname = "sane";
version = "2.9.1";
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 ];
};
}