f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
44 lines
885 B
Nix
44 lines
885 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
python,
|
|
pyusb,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "py3buddy";
|
|
version = "1.0";
|
|
pyproject = false; # manually installed
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "armijnhemel";
|
|
repo = "py3buddy";
|
|
rev = version;
|
|
hash = "sha256-KJ0xGEXHY6o2074WFZ0u7gATS+wrrjyzanYretckWYk=";
|
|
};
|
|
|
|
dependencies = [ pyusb ];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D py3buddy.py $out/${python.sitePackages}/py3buddy.py
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -D 99-ibuddy.rules $out/lib/udev/rules.d/99-ibuddy.rules
|
|
'';
|
|
|
|
meta = {
|
|
description = "Code to work with the iBuddy MSN figurine";
|
|
homepage = "https://github.com/armijnhemel/py3buddy";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ prusnak ];
|
|
};
|
|
}
|