mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
35 lines
721 B
Nix
35 lines
721 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, flake8
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "getkey";
|
|
version = "0.6.5";
|
|
|
|
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 = with lib; {
|
|
description = "Read single characters and key-strokes";
|
|
homepage = "https://github.com/kcsaff/getkey";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.symphorien ];
|
|
};
|
|
}
|