dotfiles/overlays/ntfy.nix

19 lines
612 B
Nix
Raw Normal View History

2018-11-16 17:27:28 +01:00
self: super:
{
python = super.python.override {
packageOverrides = python-self: python-super: {
ntfy = python-super.ntfy.overrideAttrs (oldAttrs: {
src = super.fetchgit {
url = "https://github.com/dali99/ntfy";
2019-03-05 15:10:26 +01:00
rev = "7b51d148bf1649cb95bf819b57e3b89b12c2e294";
sha256 = "0rzmc95ybpxbjp36jhssgs2f4c1c32f9a7s4hkwyin67131v9v8k";
2018-11-16 17:27:28 +01:00
};
propagatedBuildInputs = with python-self; [ requests ruamel_yaml appdirs mock sleekxmpp emoji psutil dbus-python matrix-client ];
preBuild = ''
export HOME="$TMP"
'';
});
};
};
}