pythonPackages.push_receiver: init at 0.1.1
This commit is contained in:
parent
af6bbe9aaf
commit
2da9ae847c
35
pkgs/development/python-modules/push-receiver/default.nix
Normal file
35
pkgs/development/python-modules/push-receiver/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, appdirs
|
||||
, http-ece
|
||||
, oscrypto
|
||||
, protobuf
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "push-receiver";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "push_receiver";
|
||||
sha256 = "sha256-Tknmra39QfA+OgrRxzKDLbkPucW8zgdHqz5FGQnzYOw=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
appdirs # required for running the bundled example
|
||||
http-ece # required for listening for new message
|
||||
oscrypto
|
||||
protobuf
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "push_receiver" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Francesco149/push_receiver";
|
||||
description = "Subscribe to GCM/FCM and receive notifications";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ veehaitch ];
|
||||
};
|
||||
}
|
@ -5645,6 +5645,8 @@ in {
|
||||
|
||||
purl = callPackage ../development/python-modules/purl { };
|
||||
|
||||
push-receiver = callPackage ../development/python-modules/push-receiver { };
|
||||
|
||||
pushbullet = callPackage ../development/python-modules/pushbullet { };
|
||||
|
||||
pushover-complete = callPackage ../development/python-modules/pushover-complete { };
|
||||
|
Loading…
Reference in New Issue
Block a user