From f39b28d2124ec02ec1b9554b5592656abff79808 Mon Sep 17 00:00:00 2001 From: Florian Sesser Date: Wed, 4 Dec 2024 18:48:01 +0000 Subject: [PATCH] Use the nixpkgs-provided klein --- nix/klein.nix | 12 ------------ nix/python-overrides.nix | 5 +---- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 nix/klein.nix diff --git a/nix/klein.nix b/nix/klein.nix deleted file mode 100644 index 6ccbfa5eeb..0000000000 --- a/nix/klein.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ klein, fetchPypi, hypothesis }: -klein.overrideAttrs (old: rec { - pname = "klein"; - version = "23.5.0"; - src = fetchPypi { - inherit pname version; - sha256 = "sha256-kGkSt6tBDZp/NRICg5w81zoqwHe9AHHIYcMfDu92Aoc="; - }; - nativeCheckInputs = [ - hypothesis - ]; -}) diff --git a/nix/python-overrides.nix b/nix/python-overrides.nix index 2e42ef3d49..4621fd3218 100644 --- a/nix/python-overrides.nix +++ b/nix/python-overrides.nix @@ -46,11 +46,8 @@ in { txi2p = self.callPackage ./txi2p.nix { }; # Some packages are of somewhat too-old versions - update them. - klein = self.callPackage ./klein.nix { - # Avoid infinite recursion. - inherit (super) klein; - }; txtorcon = self.callPackage ./txtorcon.nix { + # Avoid infinite recursion. inherit (super) txtorcon; };