python3Packages.pychannels: init at 1.2.2
This commit is contained in:
parent
8b166bcee0
commit
5c589a2743
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 ];
|
||||
};
|
||||
}
|
@ -5311,6 +5311,8 @@ in {
|
||||
|
||||
pycfdns = callPackage ../development/python-modules/pycfdns { };
|
||||
|
||||
pychannels = callPackage ../development/python-modules/pychannels { };
|
||||
|
||||
pychart = callPackage ../development/python-modules/pychart { };
|
||||
|
||||
pychef = callPackage ../development/python-modules/pychef { };
|
||||
|
Loading…
Reference in New Issue
Block a user