depot/third_party/nixpkgs/pkgs/development/python-modules/streamdeck/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

37 lines
844 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, substituteAll
, pkgs
}:
buildPythonPackage rec {
pname = "streamdeck";
version = "0.9.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-BHliZrRFd64D+UD1xcpp2HAH4D0Z7tibawJobAMM65E=";
};
patches = [
# substitute libusb path
(substituteAll {
src = ./hardcode-libusb.patch;
libusb = "${pkgs.hidapi}/lib/libhidapi-libusb${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
pythonImportsCheck = [ "StreamDeck" ];
doCheck = false;
meta = with lib; {
description = "Python library to control the Elgato Stream Deck";
homepage = "https://github.com/abcminiuser/python-elgato-streamdeck";
license = licenses.mit;
maintainers = with maintainers; [ majiir ];
broken = stdenv.isDarwin;
};
}