mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
python3.pkgs.gbulb: Remove
https://hydra.nixos.org/build/274565679/nixlog/2bd925dcf43
5d125adb76
takes care the only revdep of this package.
This commit is contained in:
parent
87063ab9d8
commit
2513af2d28
@ -1,54 +0,0 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
pygobject3,
|
||||
pytestCheckHook,
|
||||
gtk3,
|
||||
gobject-introspection,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gbulb";
|
||||
version = "0.6.5";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "beeware";
|
||||
repo = "gbulb";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-03Ott+V3Y4+Y72Llsug5coqG3C+pjAdLkPYbaY/6Uow=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace-fail "==" ">="
|
||||
'';
|
||||
|
||||
build-system = [ setuptools-scm ];
|
||||
|
||||
dependencies = [ pygobject3 ];
|
||||
|
||||
buildInputs = [ gtk3 ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
gobject-introspection
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_glib_events.TestBaseGLibEventLoop" # Somtimes fail due to imprecise timing
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "gbulb" ];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.hostPlatform.isDarwin;
|
||||
description = "GLib implementation of PEP 3156";
|
||||
homepage = "https://github.com/beeware/gbulb";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ marius851000 ];
|
||||
};
|
||||
}
|
@ -228,6 +228,7 @@ mapAliases ({
|
||||
fritzprofiles = throw "fritzprofiles was removed from nixpkgs, because it was removed as dependency of home-assistant for which it was pacakged."; # added 2024-01-05
|
||||
garages-amsterdam = throw "garages-amsterdam has been renamed odp-amsterdam."; # added 2023-01-04
|
||||
garminconnect-ha = garminconnect; # added 2022-02-05
|
||||
gbulb = throw "gbulb has been removed as it is unmaintained and no longer compatible with PyGObject 3.50."; # added 2024-10-14
|
||||
gcs-oauth2-boto-plugin = throw "gcs-oauth2-boto-plugin was removed as it depends on the removed boto package"; # Added 2024-09-22
|
||||
gdtoolkit = throw "gdtoolkit has been promoted to a top-level attribute name: `pkgs.gdtoolkit`"; # added 2023-02-15
|
||||
GeoIP = geoip; # added 2023-02-19
|
||||
|
@ -4889,8 +4889,6 @@ self: super: with self; {
|
||||
|
||||
gbinder-python = callPackage ../development/python-modules/gbinder-python { };
|
||||
|
||||
gbulb = callPackage ../development/python-modules/gbulb { };
|
||||
|
||||
gcal-sync = callPackage ../development/python-modules/gcal-sync { };
|
||||
|
||||
gcodepy = callPackage ../development/python-modules/gcodepy { };
|
||||
|
Loading…
Reference in New Issue
Block a user