depot/third_party/nixpkgs/pkgs/development/python-modules/solc-select/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

32 lines
645 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, packaging
, pycryptodome
}:
buildPythonPackage rec {
pname = "solc-select";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-850IA1NVvQ4KiH5KEIjqEKFd1k5ECMx/zXLZE7Rvx5k=";
};
propagatedBuildInputs = [
packaging
pycryptodome
];
# no tests
doCheck = false;
pythonImportsCheck = [ "solc_select" ];
meta = with lib; {
description = "Manage and switch between Solidity compiler versions";
homepage = "https://github.com/crytic/solc-select";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ arturcygan ];
};
}