summary refs log tree commit diff
path: root/pkgs/tools/admin/lexicon
diff options
context:
space:
mode:
authorP. R. d. O <d.ol.rod@tutanota.com>2022-03-11 16:49:00 -0600
committerP. R. d. O <d.ol.rod@tutanota.com>2022-03-11 16:49:00 -0600
commit6c8c7176bd1aa031757f837a4aefd7023dff5e4b (patch)
tree06b019aa41c6c5ab9a379e849eb693df0a69e25e /pkgs/tools/admin/lexicon
parentdfca474eaf27782af4b4ea7d328ebcb0d09673a8 (diff)
downloadnixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.tar
nixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.tar.gz
nixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.tar.bz2
nixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.tar.lz
nixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.tar.xz
nixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.tar.zst
nixpkgs-6c8c7176bd1aa031757f837a4aefd7023dff5e4b.zip
lexicon: 3.9.0 -> 3.9.4
Diffstat (limited to 'pkgs/tools/admin/lexicon')
-rw-r--r--pkgs/tools/admin/lexicon/default.nix30
1 files changed, 3 insertions, 27 deletions
diff --git a/pkgs/tools/admin/lexicon/default.nix b/pkgs/tools/admin/lexicon/default.nix
index 4d48110e967..c060f600d32 100644
--- a/pkgs/tools/admin/lexicon/default.nix
+++ b/pkgs/tools/admin/lexicon/default.nix
@@ -3,42 +3,18 @@
 , fetchFromGitHub
 }:
 
-let
-  py = python3.override {
-    packageOverrides = self: super: {
-      # until https://github.com/ags-slc/localzone/issues/1 gets resolved
-      dnspython = super.dnspython.overridePythonAttrs(oldAttrs: rec {
-        pname = "dnspython";
-        version = "1.16.0";
-        # since name is defined from the previous derivation, need to override
-        # name explicity for correct version to show in drvName
-        name = "${pname}-${version}";
-
-        src = super.fetchPypi {
-          inherit pname version;
-          extension = "zip";
-          sha256 = "00cfamn97w2vhq3id87f10mjna8ag5yz5dw0cy5s0sa3ipiyii9n";
-        };
-      });
-
-      localzone = super.localzone.overridePythonAttrs(oldAttrs: rec {
-        meta = oldAttrs.meta // { broken = false; };
-      });
-    };
-  };
-in
-  with py.pkgs;
+with python3.pkgs;
 
 buildPythonApplication rec {
   pname = "lexicon";
-  version = "3.9.0";
+  version = "3.9.4";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "AnalogJ";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-qJFHwFzFjZVdQv4YfrlR2cMQHsEtpQbvg/DMo6C5/z0=";
+    hash = "sha256-TySgIxBEl2RolndAkEN4vCIDKaI48vrh2ocd+CTn7Ow=";
   };
 
   nativeBuildInputs = [