about summary refs log tree commit diff
path: root/pkgs/development/python-modules/crytic-compile
diff options
context:
space:
mode:
authorArtur Cygan <arczicygan@gmail.com>2021-01-06 21:09:46 +0100
committerArtur Cygan <arczicygan@gmail.com>2021-02-03 13:55:18 +0100
commit20545ee13618e0dba0c67d418188f998263d26f2 (patch)
tree988f82e5f5bd9e7e8e857fb680d2607ef8806161 /pkgs/development/python-modules/crytic-compile
parente1722a6d58b8c656fc01e3131481f2bb2ee95866 (diff)
downloadnixlib-20545ee13618e0dba0c67d418188f998263d26f2.tar
nixlib-20545ee13618e0dba0c67d418188f998263d26f2.tar.gz
nixlib-20545ee13618e0dba0c67d418188f998263d26f2.tar.bz2
nixlib-20545ee13618e0dba0c67d418188f998263d26f2.tar.lz
nixlib-20545ee13618e0dba0c67d418188f998263d26f2.tar.xz
nixlib-20545ee13618e0dba0c67d418188f998263d26f2.tar.zst
nixlib-20545ee13618e0dba0c67d418188f998263d26f2.zip
python3Packages.crytic-compile: 0.1.9 -> 0.1.12
Diffstat (limited to 'pkgs/development/python-modules/crytic-compile')
-rw-r--r--pkgs/development/python-modules/crytic-compile/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/crytic-compile/default.nix b/pkgs/development/python-modules/crytic-compile/default.nix
index 936db1081b6a..95f2effc045a 100644
--- a/pkgs/development/python-modules/crytic-compile/default.nix
+++ b/pkgs/development/python-modules/crytic-compile/default.nix
@@ -6,6 +6,10 @@ buildPythonPackage rec {
 
   disabled = pythonOlder "3.6";
 
+  patchPhase = ''
+    substituteInPlace setup.py --replace 'version="0.1.11",' 'version="${version}",'
+  '';
+
   src = fetchFromGitHub {
     owner = "crytic";
     repo = "crytic-compile";
@@ -21,7 +25,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Abstraction layer for smart contract build systems";
     homepage = "https://github.com/crytic/crytic-compile";
-    license = licenses.agpl3;
-    maintainers = with maintainers; [ SuperSandro2000 ];
+    license = licenses.agpl3Plus;
+    maintainers = with maintainers; [ SuperSandro2000 arturcygan ];
   };
 }