python3Packages.crytic-compile: init at 0.1.9
This commit is contained in:
parent
214e19c049
commit
f6428fd75e
26
pkgs/development/python-modules/crytic-compile/default.nix
Normal file
26
pkgs/development/python-modules/crytic-compile/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, pysha3 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "crytic-compile";
|
||||||
|
version = "0.1.9";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "crytic";
|
||||||
|
repo = "crytic-compile";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "01mis7bqsh0l5vjl6jwibzy99djza35fxmywy56q8k4jbxwmdcna";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pysha3 ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1379,6 +1379,8 @@ in {
|
|||||||
else
|
else
|
||||||
callPackage ../development/python-modules/cryptography/vectors.nix { };
|
callPackage ../development/python-modules/cryptography/vectors.nix { };
|
||||||
|
|
||||||
|
crytic-compile = callPackage ../development/python-modules/crytic-compile { };
|
||||||
|
|
||||||
csscompressor = callPackage ../development/python-modules/csscompressor { };
|
csscompressor = callPackage ../development/python-modules/csscompressor { };
|
||||||
|
|
||||||
cssmin = callPackage ../development/python-modules/cssmin { };
|
cssmin = callPackage ../development/python-modules/cssmin { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user