From 7188130fe3cf69c762d8862864e32f36cfc6d2ae Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 15 Apr 2025 23:48:18 +0200 Subject: [PATCH] python313Packages.claripy: clean-up --- pkgs/development/python-modules/claripy/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix index 6f9f920fab34..2c6f24ab1dad 100644 --- a/pkgs/development/python-modules/claripy/default.nix +++ b/pkgs/development/python-modules/claripy/default.nix @@ -10,7 +10,6 @@ setuptools, typing-extensions, z3-solver, - nix-update-script, }: buildPythonPackage rec { @@ -46,12 +45,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "claripy" ]; - passthru.updateScript = nix-update-script { }; - meta = with lib; { description = "Python abstraction layer for constraint solvers"; homepage = "https://github.com/angr/claripy"; - license = with licenses; [ bsd2 ]; + license = licenses.bsd2; maintainers = with maintainers; [ fab ]; }; }