mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 01:33:20 +00:00
python312Packages.aiorussound: init at 2.2.2
An async python package for interfacing with Russound RIO hardware
This commit is contained in:
parent
98cd0a1791
commit
812e095056
34
pkgs/development/python-modules/aiorussound/default.nix
Normal file
34
pkgs/development/python-modules/aiorussound/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiorussound";
|
||||
version = "2.2.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "noahhusby";
|
||||
repo = "aiorussound";
|
||||
rev = version;
|
||||
hash = "sha256-X7KdIjfPNZSsSXYN1gVqTpcgM00V1YG3ihxutmYnb6Y=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
pythonImportsCheck = [ "aiorussound" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Async python package for interfacing with Russound RIO hardware";
|
||||
homepage = "https://github.com/noahhusby/aiorussound";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -395,6 +395,8 @@ self: super: with self; {
|
||||
|
||||
aioruckus = callPackage ../development/python-modules/aioruckus { };
|
||||
|
||||
aiorussound = callPackage ../development/python-modules/aiorussound { };
|
||||
|
||||
aiorun = callPackage ../development/python-modules/aiorun { };
|
||||
|
||||
aioruuvigateway = callPackage ../development/python-modules/aioruuvigateway { };
|
||||
|
Loading…
Reference in New Issue
Block a user