567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
37 lines
751 B
Nix
37 lines
751 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
flake8,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "getkey";
|
|
version = "0.6.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ng0ihfagh9g8hral0bq5nhjlp3csqghyv3z8b7ylkdkqc1cgiv8";
|
|
};
|
|
|
|
# disable coverage, because we don't care and python-coveralls is not in nixpkgs
|
|
postPatch = ''
|
|
sed -e '/python-coveralls/d' -e '/pytest-cov/d' -i setup.py
|
|
rm setup.cfg
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
flake8
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = {
|
|
description = "Read single characters and key-strokes";
|
|
homepage = "https://github.com/kcsaff/getkey";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.symphorien ];
|
|
};
|
|
}
|