rxv: init at 0.6.0
This commit is contained in:
parent
54c409eb01
commit
4373dba155
40
pkgs/development/python-modules/rxv/default.nix
Normal file
40
pkgs/development/python-modules/rxv/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, defusedxml
|
||||
, requests
|
||||
, pytest
|
||||
, requests-mock
|
||||
, mock
|
||||
, pytestcov
|
||||
, pytest-timeout
|
||||
, testtools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rxv";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wuub";
|
||||
repo = pname;
|
||||
# Releases are not tagged
|
||||
rev = "9b586203665031f93960543a272bb1a8f541ed37";
|
||||
sha256 = "1dw3ayrzknai2279bhkgzcapzw06rhijlny33rymlbp7irp0gvnj";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ defusedxml requests ];
|
||||
|
||||
checkInputs = [ pytest requests-mock mock pytestcov pytest-timeout testtools ];
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Automation Library for Yamaha RX-V473, RX-V573, RX-V673, RX-V773 receivers";
|
||||
homepage = https://github.com/wuub/rxv;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ flyfloh ];
|
||||
};
|
||||
}
|
||||
|
@ -6855,6 +6855,8 @@ in {
|
||||
|
||||
pony = callPackage ../development/python-modules/pony { };
|
||||
|
||||
rxv = callPackage ../development/python-modules/rxv { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
Loading…
Reference in New Issue
Block a user