lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pyu2f: 0.1.4 -> 0.1.5a

+11 -15
+11 -15
pkgs/development/python-modules/pyu2f/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, buildPythonPackage, 2 - six, mock, pyfakefs, unittest2, pytest 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , six 5 + , mock 6 + , pyfakefs 7 + , pytestCheckHook 3 8 }: 4 9 5 10 buildPythonPackage rec { 6 11 pname = "pyu2f"; 7 - version = "0.1.4"; 12 + version = "0.1.5a"; 8 13 9 14 src = fetchFromGitHub { 10 15 owner = "google"; 11 16 repo = pname; 12 17 rev = version; 13 - sha256 = "0waxdydvxn05a8ab9j235mz72x7p4pwa59pnxyk1zzbwxnpxb3p9"; 18 + sha256 = "0mx7bn1p3n0fxyxa82wg3c719hby7vqkxv57fhf7zvhlg2zfnr0v"; 14 19 }; 15 20 16 - # Platform detection for linux fails 17 - postPatch = lib.optionalString stdenv.isLinux '' 18 - rm pyu2f/tests/hid/macos_test.py 19 - ''; 20 - 21 21 propagatedBuildInputs = [ six ]; 22 22 23 - checkInputs = [ pytest mock pyfakefs unittest2 ]; 24 - 25 - checkPhase = '' 26 - pytest pyu2f/tests 27 - ''; 23 + checkInputs = [ mock pyfakefs pytestCheckHook ]; 28 24 29 25 meta = with lib; { 30 26 description = "U2F host library for interacting with a U2F device over USB"; 31 - homepage = "https://github.com/google/pyu2f/"; 27 + homepage = "https://github.com/google/pyu2f"; 32 28 license = licenses.asl20; 33 29 maintainers = with maintainers; [ prusnak ]; 34 30 };