nixpkgs/pkgs/development/python-modules/readchar/default.nix

25 lines
665 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, flake8, pytest, pytest-cov, pexpect }:
2019-06-15 08:30:05 +00:00
buildPythonPackage rec {
pname = "readchar";
version = "2.0.0";
# Don't use wheels on PyPI
src = fetchFromGitHub {
owner = "magmax";
repo = "python-${pname}";
rev = version;
sha256 = "0j1vj4f2j8x5f40rs6h8qplklcxcdbvkkvjpkpmr1xagw05i12bm";
};
nativeBuildInputs = [ flake8 ];
checkInputs = [ pytest pytest-cov pexpect ];
2019-06-15 08:30:05 +00:00
meta = with lib; {
2019-06-15 08:30:05 +00:00
homepage = "https://github.com/magmax/python-readchar";
description = "Python library to read characters and key strokes";
license = licenses.mit;
maintainers = [ maintainers.mmahut ];
};
}