nixpkgs/pkgs/development/python-modules/eth-typing/default.nix
2019-09-07 13:58:19 +03:00

36 lines
926 B
Nix

{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, pytest }:
buildPythonPackage rec {
pname = "eth-typing";
version = "2.1.0";
# Tests are missing from the PyPI source tarball so let's use GitHub
# https://github.com/ethereum/eth-typing/issues/8
src = fetchFromGitHub {
owner = "ethereum";
repo = pname;
rev = "v${version}";
sha256 = "0chrrfw3kdaihgr2ryhljf56bflipzmfxai688xrc2yk7yiqnll5";
};
# setuptools-markdown uses pypandoc which is broken at the moment
preConfigure = ''
substituteInPlace setup.py --replace \'setuptools-markdown\' ""
'';
disabled = pythonOlder "3.5";
checkInputs = [ pytest ];
checkPhase = ''
pytest .
'';
meta = {
description = "Common type annotations for Ethereum Python packages";
homepage = https://github.com/ethereum/eth-typing;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jluttine ];
};
}