mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
0215034f25
when they already rely on SRI hashes.
43 lines
857 B
Nix
43 lines
857 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, aiohttp
|
|
, async-timeout
|
|
, pyserial-asyncio
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "epson-projector";
|
|
version = "0.5.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "epson_projector";
|
|
inherit version;
|
|
hash = "sha256-a9pRncC22DCKX+7ObC8PORpR+RGbOBor2lbwzfrU8tk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-timeout
|
|
pyserial-asyncio
|
|
];
|
|
|
|
# tests need real device
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"epson_projector"
|
|
"epson_projector.const"
|
|
"epson_projector.projector_http"
|
|
"epson_projector.projector_serial"
|
|
"epson_projector.projector_tcp"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Epson projector support for Python";
|
|
homepage = "https://github.com/pszafer/epson_projector";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|