onkyo-eiscp: init at 1.2.4
This commit is contained in:
parent
010dde7c65
commit
8eabd76432
22
pkgs/development/python-modules/onkyo-eiscp/default.nix
Normal file
22
pkgs/development/python-modules/onkyo-eiscp/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
|
, docopt, netifaces }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "onkyo-eiscp";
|
||||||
|
version = "1.2.4";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0qb5w2g2cnckq7psh92g1w3gf76437x1vwfhwnd247wshs5h7hxj";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ docopt netifaces ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Control Onkyo receivers over ethernet";
|
||||||
|
homepage = https://github.com/miracle2k/onkyo-eiscp;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
};
|
||||||
|
}
|
@ -2780,6 +2780,8 @@ in {
|
|||||||
|
|
||||||
curtsies = callPackage ../development/python-modules/curtsies { };
|
curtsies = callPackage ../development/python-modules/curtsies { };
|
||||||
|
|
||||||
|
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
|
||||||
|
|
||||||
tablib = buildPythonPackage rec {
|
tablib = buildPythonPackage rec {
|
||||||
name = "tablib-${version}";
|
name = "tablib-${version}";
|
||||||
version = "0.12.1";
|
version = "0.12.1";
|
||||||
|
Loading…
Reference in New Issue
Block a user