mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
543cd40ecc
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 | xargs -i nvim {}` and sorting the opened files by hand, avoiding generated packages list
28 lines
566 B
Nix
28 lines
566 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 ];
|
|
};
|
|
}
|