mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
pythonPackages.pyfcm: init at 1.4.7 (#67321)
* pythonPackages.pyfcm: init at 1.4.7 * pythonPackages.pyfcm: build from github, rather than Pypi * pythonPackages.pyfcm: adds ldelelis as package maintainer
This commit is contained in:
parent
f4f450f3a5
commit
d1508cb819
|
@ -3991,6 +3991,12 @@
|
|||
githubId = 32152;
|
||||
name = "Luka Blaskovic";
|
||||
};
|
||||
ldelelis = {
|
||||
email = "ldelelis@est.frba.utn.edu.ar";
|
||||
github = "ldelelis";
|
||||
githubId = 20250323;
|
||||
name = "Lucio Delelis";
|
||||
};
|
||||
ldesgoui = {
|
||||
email = "ldesgoui@gmail.com";
|
||||
github = "ldesgoui";
|
||||
|
|
29
pkgs/development/python-modules/pyfcm/default.nix
Normal file
29
pkgs/development/python-modules/pyfcm/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyfcm";
|
||||
version = "1.4.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "olucurious";
|
||||
repo = "pyfcm";
|
||||
rev = "${version}";
|
||||
sha256 = "0aj10yvjsc04j15zbn403i83j7ra5yg35pi3ywkyakk8n1s0s3qg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
# pyfcm's unit testing suite requires network access
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)";
|
||||
homepage = "https://github.com/olucurious/pyfcm";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ldelelis ];
|
||||
};
|
||||
}
|
|
@ -1082,6 +1082,8 @@ in {
|
|||
|
||||
pyfaidx = callPackage ../development/python-modules/pyfaidx { };
|
||||
|
||||
pyfcm = callPackage ../development/python-modules/pyfcm { };
|
||||
|
||||
pyfttt = callPackage ../development/python-modules/pyfttt { };
|
||||
|
||||
pyftdi = callPackage ../development/python-modules/pyftdi { };
|
||||
|
|
Loading…
Reference in a new issue