Merge pull request #120904 from prusnak/pyu2f
python3Packages.pyu2f: 0.1.4 -> 0.1.5a
This commit is contained in:
commit
282473158c
1 changed files with 11 additions and 15 deletions
|
@ -1,34 +1,30 @@
|
|||
{ stdenv, lib, fetchFromGitHub, buildPythonPackage,
|
||||
six, mock, pyfakefs, unittest2, pytest
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, six
|
||||
, mock
|
||||
, pyfakefs
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyu2f";
|
||||
version = "0.1.4";
|
||||
version = "0.1.5a";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0waxdydvxn05a8ab9j235mz72x7p4pwa59pnxyk1zzbwxnpxb3p9";
|
||||
sha256 = "0mx7bn1p3n0fxyxa82wg3c719hby7vqkxv57fhf7zvhlg2zfnr0v";
|
||||
};
|
||||
|
||||
# Platform detection for linux fails
|
||||
postPatch = lib.optionalString stdenv.isLinux ''
|
||||
rm pyu2f/tests/hid/macos_test.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ pytest mock pyfakefs unittest2 ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest pyu2f/tests
|
||||
'';
|
||||
checkInputs = [ mock pyfakefs pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "U2F host library for interacting with a U2F device over USB";
|
||||
homepage = "https://github.com/google/pyu2f/";
|
||||
homepage = "https://github.com/google/pyu2f";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ prusnak ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue