onkyo-eiscp: init at 1.2.4

This commit is contained in:
Peter Hoeg 2018-02-26 18:14:27 +08:00
parent 010dde7c65
commit 8eabd76432
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View file

@ -2780,6 +2780,8 @@ in {
curtsies = callPackage ../development/python-modules/curtsies { };
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
tablib = buildPythonPackage rec {
name = "tablib-${version}";
version = "0.12.1";