mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
Merge pull request #175826 from fabaff/pyws66i
This commit is contained in:
commit
415978df5f
36
pkgs/development/python-modules/pyws66i/default.nix
Normal file
36
pkgs/development/python-modules/pyws66i/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyws66i";
|
||||
version = "1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ssaenger";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-NTL2+xLqSNsz4YdUTwr0nFjhm1NNgB8qDnWSoE2sizY=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyws66i"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library to interface with WS66i 6-zone amplifier";
|
||||
homepage = "https://github.com/bigmoby/pyialarmxr";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -8847,6 +8847,8 @@ in {
|
|||
|
||||
pywlroots = callPackage ../development/python-modules/pywlroots { };
|
||||
|
||||
pyws66i = callPackage ../development/python-modules/pyws66i { };
|
||||
|
||||
pyxattr = callPackage ../development/python-modules/pyxattr { };
|
||||
|
||||
pyworld = callPackage ../development/python-modules/pyworld { };
|
||||
|
|
Loading…
Reference in a new issue