depot/third_party/nixpkgs/pkgs/development/python-modules/readchar/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

46 lines
833 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
# native
, flake8
# tests
, pytestCheckHook
, pexpect
}:
buildPythonPackage rec {
pname = "readchar";
version = "3.0.5";
format = "setuptools";
# Don't use wheels on PyPI
src = fetchFromGitHub {
owner = "magmax";
repo = "python-${pname}";
rev = "v${version}";
sha256 = "sha256:01bjw3ipdzxq1ijn9354nlya625i26ri7jac1dnlj1d1gdd8m5lx";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov readchar" ""
'';
nativeBuildInputs = [
flake8
];
checkInputs = [
pytestCheckHook
pexpect
];
meta = with lib; {
homepage = "https://github.com/magmax/python-readchar";
description = "Python library to read characters and key strokes";
license = licenses.mit;
maintainers = [ maintainers.mmahut ];
};
}