mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
95 lines
2.5 KiB
Nix
95 lines
2.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, python39
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, withXmpp ? !stdenv.hostPlatform.isDarwin
|
|
, withMatrix ? true
|
|
, withSlack ? true
|
|
, withEmoji ? true
|
|
, withPid ? true
|
|
, withDbus ? stdenv.hostPlatform.isLinux
|
|
}:
|
|
|
|
let
|
|
python = python39.override {
|
|
self = python;
|
|
packageOverrides = self: super: {
|
|
ntfy-webpush = self.callPackage ./webpush.nix { };
|
|
|
|
# databases, on which slack-sdk depends, is incompatible with SQLAlchemy 2.0
|
|
sqlalchemy = super.sqlalchemy_1_4;
|
|
|
|
django = super.django_3;
|
|
};
|
|
};
|
|
in python.pkgs.buildPythonApplication rec {
|
|
pname = "ntfy";
|
|
version = "2.7.0";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dschep";
|
|
repo = "ntfy";
|
|
rev = "v${version}";
|
|
sha256 = "09f02cn4i1l2aksb3azwfb70axqhn7d0d0vl2r6640hqr74nc1cv";
|
|
};
|
|
|
|
nativeCheckInputs = with python.pkgs; [
|
|
mock
|
|
];
|
|
|
|
propagatedBuildInputs = with python.pkgs; ([
|
|
requests ruamel-yaml appdirs
|
|
ntfy-webpush
|
|
] ++ (lib.optionals withXmpp [
|
|
sleekxmpp dnspython
|
|
]) ++ (lib.optionals withMatrix [
|
|
matrix-client
|
|
]) ++ (lib.optionals withSlack [
|
|
slack-sdk
|
|
]) ++ (lib.optionals withEmoji [
|
|
emoji
|
|
]) ++ (lib.optionals withPid [
|
|
psutil
|
|
]) ++ (lib.optionals withDbus [
|
|
dbus-python
|
|
]));
|
|
|
|
patches = [
|
|
# Fix Slack integration no longer working.
|
|
# From https://github.com/dschep/ntfy/pull/229 - "Swap Slacker for Slack SDK"
|
|
(fetchpatch {
|
|
name = "ntfy-Swap-Slacker-for-Slack-SDK.patch";
|
|
url = "https://github.com/dschep/ntfy/commit/2346e7cfdca84c8f1afc7462a92145c1789deb3e.patch";
|
|
sha256 = "13k7jbsdx0jx7l5s8whirric76hml5bznkfcxab5xdp88q52kpk7";
|
|
})
|
|
# Add compatibility with emoji 2.0
|
|
# https://github.com/dschep/ntfy/pull/250
|
|
(fetchpatch {
|
|
name = "ntfy-Add-compatibility-with-emoji-2.0.patch";
|
|
url = "https://github.com/dschep/ntfy/commit/4128942bb7a706117e7154a50a73b88f531631fe.patch";
|
|
sha256 = "sha256-V8dIy/K957CPFQQS1trSI3gZOjOcVNQLgdWY7g17bRw=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# We disable the Darwin specific things because it relies on pyobjc, which we don't have.
|
|
substituteInPlace setup.py \
|
|
--replace "':sys_platform == \"darwin\"'" "'darwin'"
|
|
'';
|
|
|
|
checkPhase = ''
|
|
HOME=$(mktemp -d) ${python.interpreter} setup.py test
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utility for sending notifications, on demand and when commands finish";
|
|
homepage = "http://ntfy.rtfd.org/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ kamilchm ];
|
|
mainProgram = "ntfy";
|
|
};
|
|
}
|