Merge pull request #113685 from fabaff/pychannels
This commit is contained in:
commit
b0dcc5bb97
30
pkgs/development/python-modules/pychannels/default.nix
Normal file
30
pkgs/development/python-modules/pychannels/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pychannels";
|
||||||
|
version = "1.2.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fancybits";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0dqc0vhf6c5r3g7nfbpa668x6z2zxrznk6h907s6sxkq4sbqnhqf";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
# Project has not published tests yet
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pychannels" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library for interacting with the Channels app";
|
||||||
|
homepage = "https://github.com/fancybits/pychannels";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -110,7 +110,7 @@
|
|||||||
"canary" = ps: with ps; [ ha-ffmpeg ]; # missing inputs: py-canary
|
"canary" = ps: with ps; [ ha-ffmpeg ]; # missing inputs: py-canary
|
||||||
"cast" = ps: with ps; [ aiohttp-cors hass-nabucasa mutagen plexapi plexauth plexwebsocket PyChromecast zeroconf ];
|
"cast" = ps: with ps; [ aiohttp-cors hass-nabucasa mutagen plexapi plexauth plexwebsocket PyChromecast zeroconf ];
|
||||||
"cert_expiry" = ps: with ps; [ ];
|
"cert_expiry" = ps: with ps; [ ];
|
||||||
"channels" = ps: with ps; [ ]; # missing inputs: pychannels
|
"channels" = ps: with ps; [ pychannels ];
|
||||||
"circuit" = ps: with ps; [ ]; # missing inputs: circuit-webhook
|
"circuit" = ps: with ps; [ ]; # missing inputs: circuit-webhook
|
||||||
"cisco_ios" = ps: with ps; [ pexpect ];
|
"cisco_ios" = ps: with ps; [ pexpect ];
|
||||||
"cisco_mobility_express" = ps: with ps; [ ciscomobilityexpress ];
|
"cisco_mobility_express" = ps: with ps; [ ciscomobilityexpress ];
|
||||||
|
@ -5313,6 +5313,8 @@ in {
|
|||||||
|
|
||||||
pycfdns = callPackage ../development/python-modules/pycfdns { };
|
pycfdns = callPackage ../development/python-modules/pycfdns { };
|
||||||
|
|
||||||
|
pychannels = callPackage ../development/python-modules/pychannels { };
|
||||||
|
|
||||||
pychart = callPackage ../development/python-modules/pychart { };
|
pychart = callPackage ../development/python-modules/pychart { };
|
||||||
|
|
||||||
pychef = callPackage ../development/python-modules/pychef { };
|
pychef = callPackage ../development/python-modules/pychef { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user