This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
36 lines
718 B
Nix
36 lines
718 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
python3Packages,
|
|
}:
|
|
|
|
let
|
|
self = python3Packages.buildPythonApplication {
|
|
pname = "git-branchstack";
|
|
version = "0.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "git-branchstack";
|
|
inherit (self) version;
|
|
hash = "sha256-gja93LOcVCQ6l+Cygvsm+3uomvxtvUl6t23GIb/tKyQ=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
git-revise
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/krobelus/git-branchstack";
|
|
description = "Efficiently manage Git branches without leaving your local branch";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
};
|
|
in
|
|
self
|