mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
83 lines
1.7 KiB
Nix
83 lines
1.7 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, glibcLocales
|
|
, libnotify
|
|
}:
|
|
|
|
let
|
|
py = python3.override {
|
|
self = py;
|
|
packageOverrides = self: super: {
|
|
|
|
# Requires "urwid~=2.1.2", otherwise some tests are failing
|
|
urwid = super.urwid.overridePythonAttrs (oldAttrs: rec {
|
|
version = "2.1.2";
|
|
src = fetchFromGitHub {
|
|
owner = "urwid";
|
|
repo = "urwid";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-oPb2h/+gaqkZTXIiESjExMfBNnOzDvoMkXvkZ/+KVwo=";
|
|
};
|
|
doCheck = false;
|
|
});
|
|
};
|
|
};
|
|
in
|
|
with py.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "zulip-term";
|
|
version = "0.7.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zulip";
|
|
repo = "zulip-terminal";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ZouUU4p1FSGMxPuzDo5P971R+rDXpBdJn2MqvkJO+Fw=";
|
|
};
|
|
|
|
patches = [
|
|
./pytest-executable-name.patch
|
|
];
|
|
|
|
nativeBuildInputs = with py.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = with py.pkgs; [
|
|
beautifulsoup4
|
|
lxml
|
|
pygments
|
|
pyperclip
|
|
python-dateutil
|
|
pytz
|
|
typing-extensions
|
|
tzlocal
|
|
urwid
|
|
urwid-readline
|
|
zulip
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
glibcLocales
|
|
] ++ (with python3.pkgs; [
|
|
pytestCheckHook
|
|
pytest-cov
|
|
pytest-mock
|
|
]);
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix" "PATH" ":" (lib.makeBinPath [ libnotify ])
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Zulip's official terminal client";
|
|
homepage = "https://github.com/zulip/zulip-terminal";
|
|
changelog = "https://github.com/zulip/zulip-terminal/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|