1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "pytest-unordered"; 9 version = "0.4.1"; 10 11 src = fetchFromGitHub { 12 owner = "utapyngo"; 13 repo = pname; 14 rev = "972012a984b1e9fb3e98f9e8fe9e2ada16ad8110"; 15 hash = "sha256-mCcR6WZb2+V5n0PwgsjvnChWnANkIyQ0YtqwTKBYtaA="; 16 }; 17 18 checkInputs = [ pytestCheckHook ]; 19 20 pythonImportsCheck = [ "pytest_unordered" ]; 21 22 meta = with lib; { 23 description = "Test equality of unordered collections in pytest"; 24 homepage = "https://github.com/utapyngo/pytest-unordered"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ onny ]; 27 }; 28}