Merge pull request #127182 from mweinelt/python39-things
This commit is contained in:
commit
fbd8a57b52
5 changed files with 4 additions and 19 deletions
|
@ -16,7 +16,6 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "aioguardian";
|
||||
version = "1.0.7";
|
||||
disabled = pythonAtLeast "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bachya";
|
||||
|
|
|
@ -13,7 +13,6 @@ buildPythonPackage rec {
|
|||
pname = "aiohomekit";
|
||||
version = "0.2.67";
|
||||
format = "pyproject";
|
||||
disabled = pythonAtLeast "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Jc2k";
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "pytile";
|
||||
version = "5.2.1";
|
||||
disabled = pythonAtLeast "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bachya";
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "typing-inspect";
|
||||
version = "0.6.0";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "typing_inspect";
|
||||
sha256 = "1dzs9a1pr23dhbvmnvms2jv7l7jk26023g5ysf0zvnq8b791s6wg";
|
||||
sha256 = "1al2lyi3r189r5xgw90shbxvd88ic4si9w7n3d9lczxiv6bl0z84";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -26,6 +26,5 @@ buildPythonPackage rec {
|
|||
homepage = "https://github.com/ilevkivskyi/typing_inspect";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ albakham ];
|
||||
broken = isPy39; # see https://github.com/ilevkivskyi/typing_inspect/issues/65
|
||||
};
|
||||
}
|
||||
|
|
|
@ -134,19 +134,6 @@ let
|
|||
});
|
||||
})
|
||||
|
||||
# Remove after https://github.com/NixOS/nixpkgs/pull/121854 has passed staging-next
|
||||
(self: super: {
|
||||
sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec {
|
||||
version = "1.4.13";
|
||||
src = oldAttrs.src.override {
|
||||
inherit version;
|
||||
sha256 = "0npsg38d11skv04zvsi90j93f6jdgm8666ds2ri7shr1pz1732hx";
|
||||
};
|
||||
patches = [];
|
||||
propagatedBuildInputs = [ python3.pkgs.greenlet ];
|
||||
});
|
||||
})
|
||||
|
||||
# home-assistant-frontend does not exist in python3.pkgs
|
||||
(self: super: {
|
||||
home-assistant-frontend = self.callPackage ./frontend.nix { };
|
||||
|
@ -783,6 +770,8 @@ in with py.pkgs; buildPythonApplication rec {
|
|||
# onboarding tests rpi_power component, for which we are lacking rpi_bad_power library
|
||||
"test_onboarding_core_sets_up_rpi_power"
|
||||
"test_onboarding_core_no_rpi_power"
|
||||
# hue/test_sensor_base.py: Race condition when counting events
|
||||
"test_hue_events"
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
|
|
Loading…
Reference in a new issue