about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-03-28 23:08:17 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-03-28 23:08:17 +0100
commit1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4 (patch)
tree2bffae99f475d0fa218b67d69843626487246aa3
parentbb920bf9ff05bab7c77669b6d2768e6f951e2f8e (diff)
downloadnixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.tar
nixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.tar.gz
nixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.tar.bz2
nixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.tar.lz
nixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.tar.xz
nixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.tar.zst
nixlib-1e430af6e4bf50dd78243fb9f8c4e1dc88f987b4.zip
python311Packages.ailment: refactor
-rw-r--r--pkgs/development/python-modules/ailment/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix
index 77e86c49aa7c..348d4e8e6237 100644
--- a/pkgs/development/python-modules/ailment/default.nix
+++ b/pkgs/development/python-modules/ailment/default.nix
@@ -15,16 +15,16 @@ buildPythonPackage rec {
 
   src = fetchFromGitHub {
     owner = "angr";
-    repo = pname;
+    repo = "ailment";
     rev = "refs/tags/v${version}";
     hash = "sha256-xc9/J360ftynKT5HYNcjR/0WX04DUDmszaAHb8h3Iao=";
   };
 
-  nativeBuildInputs = [
+  build-system = [
     setuptools
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     pyvex
   ];