python3Packages.crytic-compile: init at 0.1.9

This commit is contained in:
Sandro Jäckel 2020-11-05 22:02:14 +01:00 committed by Jonathan Ringer
parent 214e19c049
commit f6428fd75e
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

@ -1379,6 +1379,8 @@ in {
else
callPackage ../development/python-modules/cryptography/vectors.nix { };
crytic-compile = callPackage ../development/python-modules/crytic-compile { };
csscompressor = callPackage ../development/python-modules/csscompressor { };
cssmin = callPackage ../development/python-modules/cssmin { };