mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
d1508cb819
* pythonPackages.pyfcm: init at 1.4.7 * pythonPackages.pyfcm: build from github, rather than Pypi * pythonPackages.pyfcm: adds ldelelis as package maintainer
30 lines
666 B
Nix
30 lines
666 B
Nix
{ 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 ];
|
|
};
|
|
}
|