Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

evdevremapkeys: Disable tests, remove name use

+8 -6
+8 -6
pkgs/tools/inputmethods/evdevremapkeys/default.nix
··· 1 1 { stdenv, fetchFromGitHub, python3Packages }: 2 2 3 - let 4 - pythonPackages = python3Packages; 5 - 6 - in pythonPackages.buildPythonPackage rec { 7 - name = "${pname}-0.1.0"; 3 + python3Packages.buildPythonPackage rec { 8 4 pname = "evdevremapkeys"; 5 + version = "0.1.0"; 9 6 10 7 src = fetchFromGitHub { 11 8 owner = "philipl"; ··· 14 11 sha256 = "0c9slflakm5jqd8s1zpxm7gmrrk0335m040d7m70hnsak42jvs2f"; 15 12 }; 16 13 17 - propagatedBuildInputs = with pythonPackages; [ 14 + propagatedBuildInputs = with python3Packages; [ 18 15 pyyaml 19 16 pyxdg 20 17 python-daemon 21 18 evdev 22 19 ]; 20 + 21 + # hase no tests 22 + doCheck = false; 23 + 24 + pythonImportsCheck = [ "evdevremapkeys" ]; 23 25 24 26 meta = with stdenv.lib; { 25 27 homepage = "https://github.com/philipl/evdevremapkeys";