1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-03 06:19:10 +03:00
nixpkgs/pkgs/development/python-modules/solc-select/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
647 B
Nix
Raw Normal View History

2021-07-29 14:04:45 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, packaging
, pycryptodome
2021-07-29 14:04:45 +02:00
}:
buildPythonPackage rec {
pname = "solc-select";
version = "1.0.2";
2021-07-29 14:04:45 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zrpWHQdoCVDGaDGDf9fWhnRsTe1GVwqk1qls1PyvlLw=";
2021-07-29 14:04:45 +02:00
};
propagatedBuildInputs = [
packaging
pycryptodome
];
2021-07-29 14:04:45 +02:00
# 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 ];
};
}